summaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb
diff options
context:
space:
mode:
authorKevin Hilman2008-11-24 12:06:48 +0100
committerGreg Kroah-Hartman2009-01-07 18:59:58 +0100
commit58e660266d92aaa186c3df607c0ee88f18c8f4da (patch)
treefd5f63b05cffd02d0777aac2241a665d331946bd /drivers/usb/musb
parentUSB: musb: sysfs mode updates (diff)
downloadkernel-qcow2-linux-58e660266d92aaa186c3df607c0ee88f18c8f4da.tar.gz
kernel-qcow2-linux-58e660266d92aaa186c3df607c0ee88f18c8f4da.tar.xz
kernel-qcow2-linux-58e660266d92aaa186c3df607c0ee88f18c8f4da.zip
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.c12
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 @@
#include <linux/io.h>
#include <linux/gpio.h>
-#include <asm/arch/hardware.h>
-#include <asm/arch/memory.h>
-#include <asm/arch/gpio.h>
+#include <mach/arch/hardware.h>
+#include <mach/arch/memory.h>
+#include <mach/arch/gpio.h>
#include <asm/mach-types.h>
#include "musb_core.h"
@@ -370,6 +370,12 @@ int musb_platform_set_mode(struct musb *musb, u8 mode)
return -EIO;
}
+int musb_platform_set_mode(struct musb *musb, u8 mode)
+{
+ /* EVM can't do this (right?) */
+ return -EIO;
+}
+
int __init musb_platform_init(struct musb *musb)
{
void __iomem *tibase = musb->ctrl_base;