firmware: change firmware_kset to firmware_kobj

There is no firmware "subsystem" it's just a directory in /sys that
other portions of the kernel want to hook into.  So make it a kobject
not a kset to help alivate anyone who tries to do some odd kset-like
things with this.

Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman
2007-11-05 13:16:15 -08:00
parent 15f2f9b3a9
commit f62ed9e33b
7 changed files with 14 additions and 14 deletions

View File

@@ -756,7 +756,7 @@ edd_init(void)
return 1;
}
edd_kset = kset_create_and_add("edd", NULL, &firmware_kset->kobj);
edd_kset = kset_create_and_add("edd", NULL, firmware_kobj);
if (!edd_kset)
return -ENOMEM;