The patch titled driver core: struct class: remove children list has been added to the -mm tree. Its filename is driver-core-struct-class-remove-children-list.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: driver core: struct class: remove children list From: Dave Young <hidave.darkstar@xxxxxxxxx> Because the class_device was removed, now do the children list removal. Signed-off-by: Dave Young <hidave.darkstar@xxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Kay Sievers <kay.sievers@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/class.c | 1 - include/linux/device.h | 1 - 2 files changed, 2 deletions(-) diff -puN drivers/base/class.c~driver-core-struct-class-remove-children-list drivers/base/class.c --- a/drivers/base/class.c~driver-core-struct-class-remove-children-list +++ a/drivers/base/class.c @@ -140,7 +140,6 @@ int class_register(struct class *cls) pr_debug("device class '%s': registering\n", cls->name); - INIT_LIST_HEAD(&cls->children); INIT_LIST_HEAD(&cls->devices); INIT_LIST_HEAD(&cls->interfaces); kset_init(&cls->class_dirs); diff -puN include/linux/device.h~driver-core-struct-class-remove-children-list include/linux/device.h --- a/include/linux/device.h~driver-core-struct-class-remove-children-list +++ a/include/linux/device.h @@ -183,7 +183,6 @@ struct class { struct module *owner; struct kset subsys; - struct list_head children; struct list_head devices; struct list_head interfaces; struct kset class_dirs; _ Patches currently in -mm which might be from hidave.darkstar@xxxxxxxxx are struct-class-sem-to-mutex-converting.patch driver-core-struct-class-remove-children-list.patch i2c-use-class_for_each_device.patch add-time_is_after_jiffies-and-others-which-compare-with-jiffies.patch printk-ratelimiting-rewrite.patch printk-ratelimiting-rewrite-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html