diff options
author | Ian Jeffray <ian@jeffray.co.uk> | 2010-10-23 10:11:56 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2010-11-05 11:59:32 (GMT) |
commit | 5d726f5add3af537952f7c35fdaebab43b718c2d (patch) | |
tree | 3f648e9915c40ae9d71c04322c66af1d3e52812b /drivers/usb | |
parent | 31c9909b512aa4c97cffc40627c255070fe0bc78 (diff) | |
download | linux-5d726f5add3af537952f7c35fdaebab43b718c2d.tar.xz |
USB: musb: blackfin: fix musb_read_txhubport() definition
The new MUSB power code needs musb_read_txhubport() to
return a value (so stub it as 0 like the other Blackfin
hub funcs).
Signed-off-by: Ian Jeffray <ian@jeffray.co.uk>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/musb/musb_regs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_regs.h b/drivers/usb/musb/musb_regs.h index 2442675..5a727c5 100644 --- a/drivers/usb/musb/musb_regs.h +++ b/drivers/usb/musb/musb_regs.h @@ -633,8 +633,9 @@ static inline u8 musb_read_txhubaddr(void __iomem *mbase, u8 epnum) return 0; } -static inline void musb_read_txhubport(void __iomem *mbase, u8 epnum) +static inline u8 musb_read_txhubport(void __iomem *mbase, u8 epnum) { + return 0; } #endif /* CONFIG_BLACKFIN */ |