usb: add static to local symbols

Sparse reports "... was not declared. Should it be static?"

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada 2017-06-22 16:35:14 +09:00 committed by Marek Vasut
parent 2672233525
commit 121a4d13e6
4 changed files with 13 additions and 13 deletions

View file

@ -937,7 +937,7 @@ unknown:
return -1; return -1;
} }
const struct ehci_ops default_ehci_ops = { static const struct ehci_ops default_ehci_ops = {
.set_usb_mode = ehci_set_usbmode, .set_usb_mode = ehci_set_usbmode,
.get_port_speed = ehci_get_port_speed, .get_port_speed = ehci_get_port_speed,
.powerup_fixup = ehci_powerup_fixup, .powerup_fixup = ehci_powerup_fixup,

View file

@ -373,7 +373,7 @@ int usb_setup_ehci_gadget(struct ehci_ctrl **ctlrp)
} }
/* returns 0 if no match, 1 if match */ /* returns 0 if no match, 1 if match */
int usb_match_device(const struct usb_device_descriptor *desc, static int usb_match_device(const struct usb_device_descriptor *desc,
const struct usb_device_id *id) const struct usb_device_id *id)
{ {
if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) && if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
@ -410,7 +410,7 @@ int usb_match_device(const struct usb_device_descriptor *desc,
} }
/* returns 0 if no match, 1 if match */ /* returns 0 if no match, 1 if match */
int usb_match_one_id_intf(const struct usb_device_descriptor *desc, static int usb_match_one_id_intf(const struct usb_device_descriptor *desc,
const struct usb_interface_descriptor *int_desc, const struct usb_interface_descriptor *int_desc,
const struct usb_device_id *id) const struct usb_device_id *id)
{ {
@ -445,7 +445,7 @@ int usb_match_one_id_intf(const struct usb_device_descriptor *desc,
} }
/* returns 0 if no match, 1 if match */ /* returns 0 if no match, 1 if match */
int usb_match_one_id(struct usb_device_descriptor *desc, static int usb_match_one_id(struct usb_device_descriptor *desc,
struct usb_interface_descriptor *int_desc, struct usb_interface_descriptor *int_desc,
const struct usb_device_id *id) const struct usb_device_id *id)
{ {
@ -680,7 +680,7 @@ int usb_detect_change(void)
return change; return change;
} }
int usb_child_post_bind(struct udevice *dev) static int usb_child_post_bind(struct udevice *dev)
{ {
struct usb_dev_platdata *plat = dev_get_parent_platdata(dev); struct usb_dev_platdata *plat = dev_get_parent_platdata(dev);
int val; int val;

View file

@ -19,7 +19,7 @@ void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode)
DWC3_GCTL_PRTCAPDIR(mode)); DWC3_GCTL_PRTCAPDIR(mode));
} }
void dwc3_phy_reset(struct dwc3 *dwc3_reg) static void dwc3_phy_reset(struct dwc3 *dwc3_reg)
{ {
/* Assert USB3 PHY reset */ /* Assert USB3 PHY reset */
setbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST); setbits_le32(&dwc3_reg->g_usb3pipectl[0], DWC3_GUSB3PIPECTL_PHYSOFTRST);

View file

@ -192,7 +192,7 @@ static int xhci_start(struct xhci_hcor *hcor)
* @param hcor pointer to host controller operation registers * @param hcor pointer to host controller operation registers
* @return -EBUSY if XHCI Controller is not halted else status of handshake * @return -EBUSY if XHCI Controller is not halted else status of handshake
*/ */
int xhci_reset(struct xhci_hcor *hcor) static int xhci_reset(struct xhci_hcor *hcor)
{ {
u32 cmd; u32 cmd;
u32 state; u32 state;
@ -481,7 +481,7 @@ static int xhci_address_device(struct usb_device *udev, int root_portnr)
* @param udev pointer to the Device Data Structure * @param udev pointer to the Device Data Structure
* @return Returns 0 on succes else return error code on failure * @return Returns 0 on succes else return error code on failure
*/ */
int _xhci_alloc_device(struct usb_device *udev) static int _xhci_alloc_device(struct usb_device *udev)
{ {
struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); struct xhci_ctrl *ctrl = xhci_get_ctrl(udev);
union xhci_trb *event; union xhci_trb *event;