aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb/dwc3-omap.h
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <kishon@ti.com>2013-07-08 09:54:43 +0900
committerChanwoo Choi <cw00.choi@samsung.com>2013-08-05 08:53:33 +0900
commit8061ad7239f3f97b477984660e95134ca684578c (patch)
tree7e93e773509e957ad84a6fe7ada64e037503daa0 /include/linux/usb/dwc3-omap.h
parentextcon: Add an API to get extcon device from dt node (diff)
downloadlinux-dev-8061ad7239f3f97b477984660e95134ca684578c.tar.xz
linux-dev-8061ad7239f3f97b477984660e95134ca684578c.zip
usb: dwc3: use extcon fwrk to receive connect/disconnect
Modified dwc3-omap to receive connect and disconnect notification using extcon framework. Also did the necessary cleanups required after adapting to extcon framework. Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to '')
-rw-r--r--include/linux/usb/dwc3-omap.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/linux/usb/dwc3-omap.h b/include/linux/usb/dwc3-omap.h
deleted file mode 100644
index 5615f4d82724..000000000000
--- a/include/linux/usb/dwc3-omap.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (C) 2013 by Texas Instruments
- *
- * The Inventra Controller Driver for Linux is free software; you
- * can redistribute it and/or modify it under the terms of the GNU
- * General Public License version 2 as published by the Free Software
- * Foundation.
- */
-
-#ifndef __DWC3_OMAP_H__
-#define __DWC3_OMAP_H__
-
-enum omap_dwc3_vbus_id_status {
- OMAP_DWC3_UNKNOWN = 0,
- OMAP_DWC3_ID_GROUND,
- OMAP_DWC3_ID_FLOAT,
- OMAP_DWC3_VBUS_VALID,
- OMAP_DWC3_VBUS_OFF,
-};
-
-#if (defined(CONFIG_USB_DWC3) || defined(CONFIG_USB_DWC3_MODULE))
-extern int dwc3_omap_mailbox(enum omap_dwc3_vbus_id_status status);
-#else
-static inline int dwc3_omap_mailbox(enum omap_dwc3_vbus_id_status status)
-{
- return -ENODEV;
-}
-#endif
-
-#endif /* __DWC3_OMAP_H__ */