diff options
Diffstat (limited to 'include/linux/kobject.h')
-rw-r--r-- | include/linux/kobject.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/kobject.h b/include/linux/kobject.h index a6dd669cda9d..e694261de90f 100644 --- a/include/linux/kobject.h +++ b/include/linux/kobject.h | |||
@@ -126,6 +126,16 @@ struct kset_uevent_ops { | |||
126 | struct kobj_uevent_env *env); | 126 | struct kobj_uevent_env *env); |
127 | }; | 127 | }; |
128 | 128 | ||
129 | struct kobj_attribute { | ||
130 | struct attribute attr; | ||
131 | ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr, | ||
132 | char *buf); | ||
133 | ssize_t (*store)(struct kobject *kobj, struct kobj_attribute *attr, | ||
134 | const char *buf, size_t count); | ||
135 | }; | ||
136 | |||
137 | extern struct sysfs_ops kobj_sysfs_ops; | ||
138 | |||
129 | /** | 139 | /** |
130 | * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem. | 140 | * struct kset - a set of kobjects of a specific type, belonging to a specific subsystem. |
131 | * | 141 | * |