libpayload: Fix some missing-prototype warnings
usb_controller_initialize() is not declared in any header file nor called from outside of usbinit.c, so make it static. set_configuration() looks like beeing non-static on purpose (like the other helpers around it in usb.c), so put a prototype into usb.h. Change-Id: I08d93b3769d8398bb43462d9afdfeec81fef93ec Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: http://review.coreboot.org/1894 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
committed by
Patrick Georgi
parent
7a32e88f12
commit
ba22e4c3fd
@ -230,6 +230,7 @@ void init_device_entry (hci_t *controller, int num);
|
||||
|
||||
void set_feature (usbdev_t *dev, int endp, int feature, int rtype);
|
||||
void get_status (usbdev_t *dev, int endp, int rtype, int len, void *data);
|
||||
void set_configuration (usbdev_t *dev);
|
||||
int clear_feature (usbdev_t *dev, int endp, int feature, int rtype);
|
||||
int clear_stall (endpoint_t *ep);
|
||||
|
||||
|
Reference in New Issue
Block a user