diff options
author | Felipe Balbi <balbi@ti.com> | 2011-05-02 09:45:05 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-05-18 10:39:47 (GMT) |
commit | a6d28523dbe6dc5bf3fc6a9078a69de6873c511e (patch) | |
tree | d66b21decbce41fd532e2238e0c1e31fd7862f41 /arch/arm/mach-omap2/board-am3517evm.c | |
parent | 1f15848807c20762017da29fa1dac64fb67b8128 (diff) | |
download | linux-fsl-qoriq-a6d28523dbe6dc5bf3fc6a9078a69de6873c511e.tar.xz |
usb: musb: am35x: fix compile error when building am35x
am35x_musb_set_mode() was redefined. Fix it.
Reported-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-am3517evm.c')
-rw-r--r-- | arch/arm/mach-omap2/board-am3517evm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-am3517evm.c b/arch/arm/mach-omap2/board-am3517evm.c index ce7d5e6..d8a0484 100644 --- a/arch/arm/mach-omap2/board-am3517evm.c +++ b/arch/arm/mach-omap2/board-am3517evm.c @@ -396,7 +396,7 @@ static struct omap_musb_board_data musb_board_data = { .power = 500, .set_phy_power = am35x_musb_phy_power, .clear_irq = am35x_musb_clear_irq, - .set_mode = am35x_musb_set_mode, + .set_mode = am35x_set_mode, .reset = am35x_musb_reset, }; |