提交 92dea9f3 编写于 作者: B Bryan Wu 提交者: Greg Kroah-Hartman

USB: musb: kill compile warning for Blackfin systems

The Blackfin version of musb_read_target_reg_base() returns a u16 when the
common code expects a (void __iomem *), so update the Blackfin function to
return the right value.  This fixes the compile warning:

drivers/usb/musb/musb_core.c: In function 'musb_core_init':
drivers/usb/musb/musb_core.c:1448: warning: assignment makes pointer from
	integer without a cast
Signed-off-by: NBryan Wu <cooloney@kernel.org>
Signed-off-by: NMike Frysinger <vapier@gentoo.org>
Signed-off-by: NAnand Gadiyar <gadiyar@ti.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 04f4086f
...@@ -465,9 +465,9 @@ static inline u16 musb_read_hwvers(void __iomem *mbase) ...@@ -465,9 +465,9 @@ static inline u16 musb_read_hwvers(void __iomem *mbase)
return 0; return 0;
} }
static inline u16 musb_read_target_reg_base(u8 i, void __iomem *mbase) static inline void __iomem *musb_read_target_reg_base(u8 i, void __iomem *mbase)
{ {
return 0; return NULL;
} }
static inline void musb_write_rxfunaddr(void __iomem *ep_target_regs, static inline void musb_write_rxfunaddr(void __iomem *ep_target_regs,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册