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:
@ -15,13 +15,13 @@
|
||||
|
||||
#include "base.h"
|
||||
|
||||
struct kset *firmware_kset;
|
||||
EXPORT_SYMBOL_GPL(firmware_kset);
|
||||
struct kobject *firmware_kobj;
|
||||
EXPORT_SYMBOL_GPL(firmware_kobj);
|
||||
|
||||
int __init firmware_init(void)
|
||||
{
|
||||
firmware_kset = kset_create_and_add("firmware", NULL, NULL);
|
||||
if (!firmware_kset)
|
||||
firmware_kobj = kobject_create_and_add("firmware", NULL);
|
||||
if (!firmware_kobj)
|
||||
return -ENOMEM;
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user