⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bcm43xx_sysfs.h

📁 博通的bcm43xx系列Minipci接口无线网卡驱动
💻 H
字号:
#ifndef BCM43xx_SYSFS_H_#define BCM43xx_SYSFS_H_#include <linux/device.h>struct bcm43xx_sysfs {	struct device_attribute attr_sprom;	struct device_attribute attr_interfmode;	struct device_attribute attr_preamble;};#define devattr_to_bcm(attr, attr_name)	({				\	struct bcm43xx_sysfs *__s; struct bcm43xx_private *__p;		\	__s = container_of((attr), struct bcm43xx_sysfs, attr_name);	\	__p = container_of(__s, struct bcm43xx_private, sysfs);		\	__p;								\					})struct bcm43xx_private;int bcm43xx_sysfs_register(struct bcm43xx_private *bcm);void bcm43xx_sysfs_unregister(struct bcm43xx_private *bcm);#endif /* BCM43xx_SYSFS_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -