aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kobject.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/kobject.txt')
-rw-r--r--Documentation/kobject.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/kobject.txt b/Documentation/kobject.txt
index 49578cf1aea..c5182bb2c16 100644
--- a/Documentation/kobject.txt
+++ b/Documentation/kobject.txt
@@ -284,9 +284,11 @@ instead, it is associated with the ktype. So let us introduce struct
284kobj_type: 284kobj_type:
285 285
286 struct kobj_type { 286 struct kobj_type {
287 void (*release)(struct kobject *); 287 void (*release)(struct kobject *kobj);
288 const struct sysfs_ops *sysfs_ops; 288 const struct sysfs_ops *sysfs_ops;
289 struct attribute **default_attrs; 289 struct attribute **default_attrs;
290 const struct kobj_ns_type_operations *(*child_ns_type)(struct kobject *kobj);
291 const void *(*namespace)(struct kobject *kobj);
290 }; 292 };
291 293
292This structure is used to describe a particular type of kobject (or, more 294This structure is used to describe a particular type of kobject (or, more