Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.2 17 lines 585 B view raw
1/* ----------------------------------------------------------------------------- 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); 16 17#endif /* _OZCDEV_H */