/* Public domain. */ #ifndef _LINUX_SYSFS_H #define _LINUX_SYSFS_H #include struct attribute { const char *name; int mode; }; struct bin_attribute { }; struct attribute_group { const char *name; struct attribute **attrs; struct bin_attribute **bin_attrs; }; #define sysfs_create_link(x, y, z) 0 #define sysfs_remove_link(x, y) #define sysfs_create_group(x, y) 0 #define sysfs_remove_group(x, y) #define sysfs_remove_file(x, y) #define sysfs_remove_file_from_group(x, y, z) #endif