blob: 698014bb8d7293cd554b59b58ae349e2a481fe0b [file] [log] [blame]
Chris Kelly23af8c22012-02-20 21:12:17 +00001/* -----------------------------------------------------------------------------
2 * Copyright (c) 2011 Ozmo Inc
3 * Released under the GNU General Public License Version 2 (GPLv2).
4 * -----------------------------------------------------------------------------
5 */
6#ifndef _OZCDEV_H
7#define _OZCDEV_H
8
9int oz_cdev_register(void);
10int oz_cdev_deregister(void);
11int oz_cdev_init(void);
12void oz_cdev_term(void);
13int oz_cdev_start(struct oz_pd *pd, int resume);
14void oz_cdev_stop(struct oz_pd *pd, int pause);
15void oz_cdev_rx(struct oz_pd *pd, struct oz_elt *elt);
16void oz_cdev_heartbeat(struct oz_pd *pd);
17
18#endif /* _OZCDEV_H */