summaryrefslogtreecommitdiff
path: root/drivers/staging/ozwpan/ozhcd.h
diff options
context:
space:
mode:
authorChris Kelly <ckelly@ozmodevices.com>2012-02-20 21:11:53 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-24 17:26:51 (GMT)
commitae926051d7eb8f80dba9513db70d2e2fc8385d3a (patch)
treeb3ff68744d42b77076aaa8333ddf0e0a76d659fe /drivers/staging/ozwpan/ozhcd.h
parentbc3157dde35ac3b2ec12229edcfaca58cd7925c0 (diff)
downloadlinux-fsl-qoriq-ae926051d7eb8f80dba9513db70d2e2fc8385d3a.tar.xz
staging: ozwpan: Added USB HCD implementation
Added the implementation of the virtual USB HCD that is used to present devices connected via the network to the USB subsystem. Signed-off-by: Chris Kelly <ckelly@ozmodevices.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ozwpan/ozhcd.h')
-rw-r--r--drivers/staging/ozwpan/ozhcd.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/staging/ozwpan/ozhcd.h b/drivers/staging/ozwpan/ozhcd.h
new file mode 100644
index 0000000..9b30dfd
--- /dev/null
+++ b/drivers/staging/ozwpan/ozhcd.h
@@ -0,0 +1,15 @@
+/* -----------------------------------------------------------------------------
+ * Copyright (c) 2011 Ozmo Inc
+ * Released under the GNU General Public License Version 2 (GPLv2).
+ * ---------------------------------------------------------------------------*/
+#ifndef _OZHCD_H
+#define _OZHCD_H
+
+int oz_hcd_init(void);
+void oz_hcd_term(void);
+void *oz_hcd_pd_arrived(void *ctx);
+void oz_hcd_pd_departed(void *ctx);
+void oz_hcd_pd_reset(void *hpd, void *hport);
+
+#endif /* _OZHCD_H */
+