diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2008-11-24 06:06:48 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-07 12:59:58 -0500 |
commit | 58e660266d92aaa186c3df607c0ee88f18c8f4da (patch) | |
tree | fd5f63b05cffd02d0777aac2241a665d331946bd /drivers/usb/musb | |
parent | 96a274d1da950a96cb31ac1bed044e049d770980 (diff) |
USB: musb: build fixes for DaVinci
- update includes after asm/arch --> mach headers move
- adds musb_platform_set_mode() stub
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r-- | drivers/usb/musb/davinci.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/usb/musb/davinci.c b/drivers/usb/musb/davinci.c index 87aef82fbcd0..0d566dc5ce06 100644 --- a/drivers/usb/musb/davinci.c +++ b/drivers/usb/musb/davinci.c | |||
@@ -32,9 +32,9 @@ | |||
32 | #include <linux/io.h> | 32 | #include <linux/io.h> |
33 | #include <linux/gpio.h> | 33 | #include <linux/gpio.h> |
34 | 34 | ||
35 | #include <asm/arch/hardware.h> | 35 | #include <mach/arch/hardware.h> |
36 | #include <asm/arch/memory.h> | 36 | #include <mach/arch/memory.h> |
37 | #include <asm/arch/gpio.h> | 37 | #include <mach/arch/gpio.h> |
38 | #include <asm/mach-types.h> | 38 | #include <asm/mach-types.h> |
39 | 39 | ||
40 | #include "musb_core.h" | 40 | #include "musb_core.h" |
@@ -370,6 +370,12 @@ int musb_platform_set_mode(struct musb *musb, u8 mode) | |||
370 | return -EIO; | 370 | return -EIO; |
371 | } | 371 | } |
372 | 372 | ||
373 | int musb_platform_set_mode(struct musb *musb, u8 mode) | ||
374 | { | ||
375 | /* EVM can't do this (right?) */ | ||
376 | return -EIO; | ||
377 | } | ||
378 | |||
373 | int __init musb_platform_init(struct musb *musb) | 379 | int __init musb_platform_init(struct musb *musb) |
374 | { | 380 | { |
375 | void __iomem *tibase = musb->ctrl_base; | 381 | void __iomem *tibase = musb->ctrl_base; |