亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? device.h

?? xen 3.2.2 源碼
?? H
?? 第 1 頁 / 共 2 頁
字號:
	struct kobject		kobj;	struct class		* class;	/* required */	dev_t			devt;		/* dev_t, creates the sysfs "dev" */	struct class_device_attribute *devt_attr;	struct class_device_attribute uevent_attr;	struct device		* dev;		/* not necessary, but nice to have */	void			* class_data;	/* class-specific data */	struct class_device	*parent;	/* parent of this child device, if there is one */	struct attribute_group  ** groups;	/* optional groups */	void	(*release)(struct class_device *dev);	int	(*uevent)(struct class_device *dev, char **envp,			   int num_envp, char *buffer, int buffer_size);	char	class_id[BUS_ID_SIZE];	/* unique to this class */};static inline void *class_get_devdata (struct class_device *dev){	return dev->class_data;}static inline voidclass_set_devdata (struct class_device *dev, void *data){	dev->class_data = data;}extern int __must_check class_device_register(struct class_device *);extern void class_device_unregister(struct class_device *);extern void class_device_initialize(struct class_device *);extern int __must_check class_device_add(struct class_device *);extern void class_device_del(struct class_device *);extern int class_device_rename(struct class_device *, char *);extern struct class_device * class_device_get(struct class_device *);extern void class_device_put(struct class_device *);extern void class_device_remove_file(struct class_device *, 				     const struct class_device_attribute *);extern int __must_check class_device_create_bin_file(struct class_device *,					struct bin_attribute *);extern void class_device_remove_bin_file(struct class_device *,					 struct bin_attribute *);struct class_interface {	struct list_head	node;	struct class		*class;	int (*add)	(struct class_device *, struct class_interface *);	void (*remove)	(struct class_device *, struct class_interface *);	int (*add_dev)		(struct device *, struct class_interface *);	void (*remove_dev)	(struct device *, struct class_interface *);};extern int __must_check class_interface_register(struct class_interface *);extern void class_interface_unregister(struct class_interface *);extern struct class *class_create(struct module *owner, const char *name);extern void class_destroy(struct class *cls);extern struct class_device *class_device_create(struct class *cls,						struct class_device *parent,						dev_t devt,						struct device *device,						const char *fmt, ...)					__attribute__((format(printf,5,6)));extern void class_device_destroy(struct class *cls, dev_t devt);/* interface for exporting device attributes */struct device_attribute {	struct attribute	attr;	ssize_t (*show)(struct device *dev, struct device_attribute *attr,			char *buf);	ssize_t (*store)(struct device *dev, struct device_attribute *attr,			 const char *buf, size_t count);};#define DEVICE_ATTR(_name,_mode,_show,_store) \struct device_attribute dev_attr_##_name = __ATTR(_name,_mode,_show,_store)extern int __must_check device_create_file(struct device *device,					struct device_attribute * entry);extern void device_remove_file(struct device * dev, struct device_attribute * attr);extern int __must_check device_create_bin_file(struct device *dev,					       struct bin_attribute *attr);extern void device_remove_bin_file(struct device *dev,				   struct bin_attribute *attr);struct device {	struct klist		klist_children;	struct klist_node	knode_parent;		/* node in sibling list */	struct klist_node	knode_driver;	struct klist_node	knode_bus;	struct device 	* parent;	struct kobject kobj;	char	bus_id[BUS_ID_SIZE];	/* position on parent bus */	unsigned		is_registered:1;	struct device_attribute uevent_attr;	struct device_attribute *devt_attr;#ifdef XEN	spinlock_t		sem;#else	struct semaphore	sem;	/* semaphore to synchronize calls to					 * its driver.					 */#endif	struct bus_type	* bus;		/* type of bus device is on */	struct device_driver *driver;	/* which driver has allocated this					   device */	void		*driver_data;	/* data private to the driver */	void		*platform_data;	/* Platform specific data, device					   core doesn't touch it */	void		*firmware_data; /* Firmware specific data (e.g. ACPI,					   BIOS data),reserved for device core*/	struct dev_pm_info	power;	u64		*dma_mask;	/* dma mask (if dma'able device) */	u64		coherent_dma_mask;/* Like dma_mask, but for					     alloc_coherent mappings as					     not all hardware supports					     64 bit addresses for consistent					     allocations such descriptors. */	struct list_head	dma_pools;	/* dma pools (if dma'ble) */	struct dma_coherent_mem	*dma_mem; /* internal for coherent mem					     override */	/* class_device migration path */	struct list_head	node;	struct class		*class;		/* optional*/	dev_t			devt;		/* dev_t, creates the sysfs "dev" */	struct attribute_group	**groups;	/* optional groups */	void	(*release)(struct device * dev);};static inline void *dev_get_drvdata (struct device *dev){	return dev->driver_data;}static inline voiddev_set_drvdata (struct device *dev, void *data){	dev->driver_data = data;}static inline int device_is_registered(struct device *dev){	return dev->is_registered;}/* * High level routines for use by the bus drivers */extern int __must_check device_register(struct device * dev);extern void device_unregister(struct device * dev);extern void device_initialize(struct device * dev);extern int __must_check device_add(struct device * dev);extern void device_del(struct device * dev);extern int device_for_each_child(struct device *, void *,		     int (*fn)(struct device *, void *));extern int device_rename(struct device *dev, char *new_name);/* * Manual binding of a device to driver. See drivers/base/bus.c * for information on use. */extern int __must_check device_bind_driver(struct device *dev);extern void device_release_driver(struct device * dev);extern int  __must_check device_attach(struct device * dev);extern int __must_check driver_attach(struct device_driver *drv);extern int __must_check device_reprobe(struct device *dev);/* * Easy functions for dynamically creating devices on the fly */extern struct device *device_create(struct class *cls, struct device *parent,				    dev_t devt, const char *fmt, ...)				    __attribute__((format(printf,4,5)));extern void device_destroy(struct class *cls, dev_t devt);extern int virtual_device_parent(struct device *dev);/* * Platform "fixup" functions - allow the platform to have their say * about devices and actions that the general device layer doesn't * know about. *//* Notify platform of device discovery */extern int (*platform_notify)(struct device * dev);extern int (*platform_notify_remove)(struct device * dev);/** * get_device - atomically increment the reference count for the device. * */extern struct device * get_device(struct device * dev);extern void put_device(struct device * dev);/* drivers/base/power/shutdown.c */extern void device_shutdown(void);/* drivers/base/firmware.c */extern int __must_check firmware_register(struct subsystem *);extern void firmware_unregister(struct subsystem *);/* debugging and troubleshooting/diagnostic helpers. */extern const char *dev_driver_string(struct device *dev);#define dev_printk(level, dev, format, arg...)	\	printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg)#ifdef DEBUG#define dev_dbg(dev, format, arg...)		\	dev_printk(KERN_DEBUG , dev , format , ## arg)#else#define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0)#endif#define dev_err(dev, format, arg...)		\	dev_printk(KERN_ERR , dev , format , ## arg)#define dev_info(dev, format, arg...)		\	dev_printk(KERN_INFO , dev , format , ## arg)#define dev_warn(dev, format, arg...)		\	dev_printk(KERN_WARNING , dev , format , ## arg)#define dev_notice(dev, format, arg...)		\	dev_printk(KERN_NOTICE , dev , format , ## arg)/* Create alias, so I can be autoloaded. */#define MODULE_ALIAS_CHARDEV(major,minor) \	MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))#define MODULE_ALIAS_CHARDEV_MAJOR(major) \	MODULE_ALIAS("char-major-" __stringify(major) "-*")#endif /* _DEVICE_H_ */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲丰满少妇videoshd| 国产精品午夜在线观看| 日韩专区欧美专区| 777xxx欧美| 国产在线看一区| 国产精品天天看| 99精品久久免费看蜜臀剧情介绍 | 欧美精品久久99| 亚洲444eee在线观看| 日韩三级在线观看| 国产成人av电影免费在线观看| 国产欧美一区二区精品性色| 国产xxx精品视频大全| 亚洲麻豆国产自偷在线| 欧美日韩专区在线| 国内精品久久久久影院一蜜桃| 国产丝袜在线精品| 在线精品视频小说1| 欧美96一区二区免费视频| 久久麻豆一区二区| 日本黄色一区二区| 麻豆国产精品视频| 亚洲欧洲色图综合| 91麻豆精品国产91久久久久久| 欧美一级专区免费大片| 国产一区二区三区| 一区二区三区精品在线观看| 日韩欧美在线影院| 国产毛片一区二区| 中文字幕一区二区三区不卡| 欧美剧情片在线观看| 国产在线视视频有精品| 亚洲影视在线播放| 国产日韩欧美综合在线| 欧美猛男超大videosgay| 高清不卡一区二区| 婷婷国产v国产偷v亚洲高清| 国产亲近乱来精品视频| 在线成人免费视频| 99久久99久久精品免费观看| 麻豆精品国产传媒mv男同| 亚洲丝袜制服诱惑| 久久久久久久国产精品影院| 91蝌蚪porny成人天涯| 国模冰冰炮一区二区| 午夜电影一区二区| 中文字幕在线不卡国产视频| 日韩三级免费观看| 欧美日韩精品一区二区| 成人app软件下载大全免费| 精品一区二区综合| 亚洲成av人**亚洲成av**| 自拍偷在线精品自拍偷无码专区| 久久综合色婷婷| 制服丝袜中文字幕一区| 91福利国产精品| 成人激情免费网站| 国产成人免费视频一区| 久久99久久精品| 日韩黄色免费电影| 亚洲成人免费视| 夜夜嗨av一区二区三区四季av| 国产精品午夜在线| 欧美韩国日本不卡| 国产午夜亚洲精品理论片色戒| 91精品免费观看| 9191国产精品| 欧美日韩mp4| 欧美日韩国产乱码电影| 日本韩国视频一区二区| 99国产精品视频免费观看| 粉嫩欧美一区二区三区高清影视| 久久69国产一区二区蜜臀| 麻豆视频一区二区| 久久成人久久鬼色| 免费高清成人在线| 久久精品国产精品亚洲综合| 久久精品国产亚洲a| 精品一区二区精品| 国产一区二区按摩在线观看| 国产一区二区三区免费在线观看| 久久精品国产色蜜蜜麻豆| 狠狠色狠狠色综合系列| 激情成人午夜视频| 国产黄人亚洲片| 成年人午夜久久久| 色噜噜狠狠色综合欧洲selulu | 91看片淫黄大片一级在线观看| 99精品1区2区| 欧洲人成人精品| 欧美蜜桃一区二区三区| 日韩一区二区免费在线观看| 精品日韩av一区二区| 中文字幕精品一区二区精品绿巨人| 亚洲国产高清不卡| 尤物在线观看一区| 视频一区二区不卡| 精品一区二区三区免费观看| 高清在线不卡av| 91久久线看在观草草青青| 欧美日韩在线观看一区二区| 欧美一区二区在线观看| 国产欧美一区二区在线观看| 亚洲欧美视频在线观看视频| 亚洲成人av电影| 极品少妇一区二区三区精品视频| 成人午夜碰碰视频| 欧美日韩国产影片| 久久―日本道色综合久久| 国产精品每日更新在线播放网址| 亚洲最大成人综合| 韩国女主播成人在线观看| av激情亚洲男人天堂| 欧美日韩精品一区视频| 国产色产综合色产在线视频 | 精品国产亚洲在线| 亚洲日本在线观看| 毛片不卡一区二区| 91一区二区三区在线观看| 日韩视频在线你懂得| 亚洲欧洲精品天堂一级| 麻豆中文一区二区| 一本色道久久加勒比精品 | 2022国产精品视频| 一区二区三区在线播| 国内精品不卡在线| 欧美揉bbbbb揉bbbbb| 久久人人97超碰com| 亚洲a一区二区| 成人福利视频在线| 日韩精品一区二区三区四区视频 | 91麻豆swag| 久久久久国色av免费看影院| 亚洲国产成人av网| 白白色 亚洲乱淫| 日韩精品在线一区| 亚洲成人激情av| 91免费国产在线| 精品1区2区在线观看| 日韩极品在线观看| 91视视频在线观看入口直接观看www | 日日夜夜免费精品视频| 91在线云播放| 国产欧美日韩综合精品一区二区| 免费视频一区二区| 欧美日韩三级在线| 一片黄亚洲嫩模| 成人激情小说网站| 久久精品亚洲精品国产欧美| 蜜臀久久久久久久| 欧美日韩国产另类不卡| 亚洲精品美腿丝袜| 99久久er热在这里只有精品66| 久久色视频免费观看| 精品中文字幕一区二区| 欧美一区二区三区小说| 天天色 色综合| 精品视频资源站| 亚洲一线二线三线久久久| 91视频.com| 尤物视频一区二区| 色综合激情五月| 一区二区久久久| 在线看日本不卡| 亚洲第一福利一区| 欧美三级日本三级少妇99| 亚洲午夜精品网| 欧美男男青年gay1069videost| 亚洲国产精品一区二区久久恐怖片 | 亚洲欧美一区二区三区国产精品| 99热国产精品| 自拍偷自拍亚洲精品播放| 91免费观看国产| 亚洲女性喷水在线观看一区| 91在线高清观看| 一区二区三区在线免费观看| 日本福利一区二区| 亚洲国产一区在线观看| 欧美精品123区| 久久成人av少妇免费| 欧美精品一区在线观看| 国产成人av一区二区三区在线| 国产欧美日韩精品在线| 99久久夜色精品国产网站| 亚洲精品国产品国语在线app| 欧美在线观看你懂的| 青青草国产精品亚洲专区无| 欧美成人精品二区三区99精品| 国产麻豆视频精品| 国产精品电影一区二区| 欧美丝袜自拍制服另类| 美腿丝袜在线亚洲一区| 欧美韩国日本一区| 91福利在线免费观看| 美女视频第一区二区三区免费观看网站| 精品久久久久久久久久久久久久久| 懂色av一区二区夜夜嗨| 一区二区三区在线视频免费 | 久久久综合视频| 91在线观看成人|