summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2021-02-22 10:39:39 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-02-22 10:39:39 +0100
commita97e0b863eefb4a1025e39429cabf67b3ea34b72 (patch)
tree06b7aeb8e72da446529522ad3b4450b3d287e837 /include
parent2b1f426e511bf5b41c84d05ec09949ebd5dc216e (diff)
parent9ccf645bfaee366acd8dbd6b270717dae94f5347 (diff)
downloadbarebox-a97e0b863eefb4a1025e39429cabf67b3ea34b72.tar.gz
barebox-a97e0b863eefb4a1025e39429cabf67b3ea34b72.tar.xz
Merge branch 'for-next/usb'
Diffstat (limited to 'include')
-rw-r--r--include/usb/ehci.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/usb/ehci.h b/include/usb/ehci.h
index 9ca9252eb1..327500d49a 100644
--- a/include/usb/ehci.h
+++ b/include/usb/ehci.h
@@ -24,7 +24,6 @@ struct ehci_host;
#ifdef CONFIG_USB_EHCI
struct ehci_host *ehci_register(struct device_d *dev, struct ehci_data *data);
void ehci_unregister(struct ehci_host *);
-int ehci_detect(struct ehci_host *ehci);
#else
static inline struct ehci_host *ehci_register(struct device_d *dev,
struct ehci_data *data)
@@ -35,11 +34,6 @@ static inline struct ehci_host *ehci_register(struct device_d *dev,
static inline void ehci_unregister(struct ehci_host *ehci)
{
}
-
-static inline int ehci_detect(struct ehci_host *ehci)
-{
- return 0;
-}
#endif
#endif /* __USB_EHCI_H */