diff options
author | Troy Kisky <troy.kisky@boundarydevices.com> | 2013-10-22 14:27:17 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-22 17:33:09 -0400 |
commit | 7e575c46c34b5f1316eab39025fdced197629ccb (patch) | |
tree | ce3b2df05662b071118fce74af4ce5305fd5e4f5 /drivers | |
parent | 717ceb63a58e1c0047bbdce304c677054bdfb281 (diff) | |
download | u-boot-imx-7e575c46c34b5f1316eab39025fdced197629ccb.zip u-boot-imx-7e575c46c34b5f1316eab39025fdced197629ccb.tar.gz u-boot-imx-7e575c46c34b5f1316eab39025fdced197629ccb.tar.bz2 |
usb: rename board_usb_init_type to usb_init_type
commit bba679144d25b91bcd7befff5a96728a30875f54
"usb: rename board_usb_init_type to usb_init_type" missed xhci-omap.c
So, fix that patch here, and fix a checkpatch warning.
WARNING: Avoid unnecessary line continuations
Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/host/xhci-omap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-omap.c b/drivers/usb/host/xhci-omap.c index f6099ac..e667810 100644 --- a/drivers/usb/host/xhci-omap.c +++ b/drivers/usb/host/xhci-omap.c @@ -27,11 +27,11 @@ DECLARE_GLOBAL_DATA_PTR; static struct omap_xhci omap; -inline int __board_usb_init(int index, enum board_usb_init_type init) +inline int __board_usb_init(int index, enum usb_init_type init) { return 0; } -int board_usb_init(int index, enum board_usb_init_type init) \ +int board_usb_init(int index, enum usb_init_type init) __attribute__((weak, alias("__board_usb_init"))); static void dwc3_set_mode(struct dwc3 *dwc3_reg, u32 mode) |