diff options
author | Anand Gadiyar <gadiyar@ti.com> | 2010-09-16 23:22:13 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-09-27 17:15:24 (GMT) |
commit | afc28bc0ec5ebe1b71108735e27283a19feb2e24 (patch) | |
tree | 9c9f7bb278e79e82ba3b924596bdc44fea432507 | |
parent | 04be1e9ba49657347b4e1969a217e5fc33bbf72a (diff) | |
download | linux-afc28bc0ec5ebe1b71108735e27283a19feb2e24.tar.xz |
omap: usb: fix build warning
Fix this and similar build warnings when building with
omap_4430sdp_defconfig.
CC arch/arm/mach-omap2/board-4430sdp.o
In file included from arch/arm/mach-omap2/board-4430sdp.c:36:
arch/arm/plat-omap/include/plat/usb.h:109: warning: return type defaults to 'int'
Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Acked-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/plat-omap/include/plat/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/include/plat/usb.h b/arch/arm/plat-omap/include/plat/usb.h index 2a9427c..6674562 100644 --- a/arch/arm/plat-omap/include/plat/usb.h +++ b/arch/arm/plat-omap/include/plat/usb.h @@ -105,7 +105,7 @@ static inline void omap1_usb_init(struct omap_usb_config *pdata) #if defined(CONFIG_ARCH_OMAP_OTG) || defined(CONFIG_ARCH_OMAP_OTG_MODULE) void omap2_usbfs_init(struct omap_usb_config *pdata); #else -static inline omap2_usbfs_init(struct omap_usb_config *pdata) +static inline void omap2_usbfs_init(struct omap_usb_config *pdata) { } #endif |