Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.9-rc6 15 lines 485 B view raw
1/* ----------------------------------------------------------------------------- 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); 10void *oz_hcd_pd_arrived(void *ctx); 11void oz_hcd_pd_departed(void *ctx); 12void oz_hcd_pd_reset(void *hpd, void *hport); 13 14#endif /* _OZHCD_H */ 15