summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-06-23 15:29:44 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-06-24 11:41:15 +0200
commit57b56a989fb0071382832c9e7263e48057314e6c (patch)
tree2557166b0d4a9b70e0a52198c89db26fb5fd6d20 /include
parent334fe1dc8a1b866d1f0f4ccf82ff7b06589ec022 (diff)
downloadbarebox-57b56a989fb0071382832c9e7263e48057314e6c.tar.gz
barebox-57b56a989fb0071382832c9e7263e48057314e6c.tar.xz
ehci: Make has_tt configurable via platform data
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/usb/ehci.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/usb/ehci.h b/include/usb/ehci.h
new file mode 100644
index 0000000000..3304b60279
--- /dev/null
+++ b/include/usb/ehci.h
@@ -0,0 +1,10 @@
+#ifndef __USB_EHCI_H
+#define __USB_EHCI_H
+
+#define EHCI_HAS_TT (1 << 0)
+
+struct ehci_platform_data {
+ unsigned long flags;
+};
+
+#endif /* __USB_EHCI_H */