diff options
| author | Ajay Kumar Gupta <[email protected]> | 2010-07-15 16:11:01 -0400 |
|---|---|---|
| committer | Sandeep Paulraj <[email protected]> | 2010-07-15 16:11:01 -0400 |
| commit | 900c0c6b0a67b2372075f42a343205f384b0c120 (patch) | |
| tree | acac3c219a1d9a54e282d406515fd1e3dbc73730 | |
| parent | 37adbf9b1207333d586db3d3b5f8b99cba66ad3f (diff) | |
musb: fix compilation warning
Fixes below compilation warning
omap3.c: In function 'musb_platform_init':
omap3.c:123: warning: implicit declaration of function
'omap3_evm_need_extvbus'
Signed-off-by: Ajay Kumar Gupta <[email protected]>
Acked-by: Remy Bohmer <[email protected]>
Signed-off-by: Sandeep Paulraj <[email protected]>
| -rw-r--r-- | drivers/usb/musb/omap3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/omap3.h b/drivers/usb/musb/omap3.h index c934e0cadd1..2886d7e7048 100644 --- a/drivers/usb/musb/omap3.h +++ b/drivers/usb/musb/omap3.h @@ -45,7 +45,7 @@ int musb_platform_init(void); #ifdef CONFIG_OMAP3_EVM -extern u8 omap3_evm_use_extvbus(void); +extern u8 omap3_evm_need_extvbus(void); #endif #endif /* _MUSB_OMAP3_H */ |
