The patch titled tlclk: delete unnecessary sysfs_remove_group has been added to the -mm tree. Its filename is tlclk-delete-unnecessary-sysfs_remove_group.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: tlclk: delete unnecessary sysfs_remove_group From: Akinobu Mita <akinobu.mita@xxxxxxxxx> It is unnecessary and invalid to call sysfs_remove_group() after sysfs_create_group() failure. Cc: Sebastien Bouchard <sebastien.bouchard@xxxxxxxxxxxxxx> Cc: Mark Gross <mark.gross@xxxxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tlclk.c | 2 -- 1 file changed, 2 deletions(-) diff -puN drivers/char/tlclk.c~tlclk-delete-unnecessary-sysfs_remove_group drivers/char/tlclk.c --- a/drivers/char/tlclk.c~tlclk-delete-unnecessary-sysfs_remove_group +++ a/drivers/char/tlclk.c @@ -807,8 +807,6 @@ static int __init tlclk_init(void) &tlclk_attribute_group); if (ret) { printk(KERN_ERR "tlclk: failed to create sysfs device attributes.\n"); - sysfs_remove_group(&tlclk_device->dev.kobj, - &tlclk_attribute_group); goto out5; } _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch audit-fix-kstrdup-error-check.patch gss_spkm3-fix-error-handling-in-module-init.patch tlclk-delete-unnecessary-sysfs_remove_group.patch git-acpi.patch git-alsa.patch powerpc-use-is_init.patch git-drm.patch ehca-fix-kthread_create-error-check.patch ehca-fix-do_mmap-error-check.patch pc110pad-return-proper-error.patch git-mtd.patch net-use-bitrev8.patch auth_gss-unregister-gss_domain-when-unloading-module.patch iscsi-fix-crypto_alloc_hash-error-check.patch git-watchdog.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