blob: 55e97b1c707935e05ba8541b03f6b2f28948b903 [file] [log] [blame]
Chris Kellyae926052012-02-20 21:11:53 +00001/* -----------------------------------------------------------------------------
2 * Copyright (c) 2011 Ozmo Inc
3 * Released under the GNU General Public License Version 2 (GPLv2).
4 * ---------------------------------------------------------------------------*/
5#ifndef _OZHCD_H
6#define _OZHCD_H
7
8int oz_hcd_init(void);
9void oz_hcd_term(void);
Rupesh Gujare0503d202013-08-13 18:29:22 +010010struct oz_port *oz_hcd_pd_arrived(void *ctx);
Rupesh Gujare25403812013-08-13 18:29:23 +010011void oz_hcd_pd_departed(struct oz_port *hport);
Chris Kellyae926052012-02-20 21:11:53 +000012void oz_hcd_pd_reset(void *hpd, void *hport);
13
14#endif /* _OZHCD_H */
15