Skip to content

Commit

Permalink
firmware: change firmware_kset to firmware_kobj
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
gregkh committed Jan 25, 2008
1 parent 15f2f9b commit f62ed9e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions arch/s390/kernel/ipl.c
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ static int __init ipl_init(void)
{
int rc;

ipl_kset = kset_create_and_add("ipl", NULL, &firmware_kset->kobj);
ipl_kset = kset_create_and_add("ipl", NULL, firmware_kobj);
if (!ipl_kset)
return -ENOMEM;
switch (ipl_info.type) {
Expand Down Expand Up @@ -974,7 +974,7 @@ static int __init reipl_init(void)
{
int rc;

reipl_kset = kset_create_and_add("reipl", NULL, &firmware_kset->kobj);
reipl_kset = kset_create_and_add("reipl", NULL, firmware_kobj);
if (!reipl_kset)
return -ENOMEM;
rc = sysfs_create_file(&reipl_kset->kobj, &reipl_type_attr.attr);
Expand Down Expand Up @@ -1063,7 +1063,7 @@ static int __init dump_init(void)
{
int rc;

dump_kset = kset_create_and_add("dump", NULL, &firmware_kset->kobj);
dump_kset = kset_create_and_add("dump", NULL, firmware_kobj);
if (!dump_kset)
return -ENOMEM;
rc = sysfs_create_file(&dump_kset->kobj, &dump_type_attr);
Expand All @@ -1086,7 +1086,7 @@ static int __init shutdown_actions_init(void)
int rc;

shutdown_actions_kset = kset_create_and_add("shutdown_actions", NULL,
&firmware_kset->kobj);
firmware_kobj);
if (!shutdown_actions_kset)
return -ENOMEM;
rc = sysfs_create_file(&shutdown_actions_kset->kobj, &on_panic_attr);
Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ static int __init acpi_init(void)
return -ENODEV;
}

acpi_kobj = kobject_create_and_add("acpi", &firmware_kset->kobj);
acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
if (!acpi_kobj) {
printk(KERN_WARNING "%s: kset create error\n", __FUNCTION__);
acpi_kobj = NULL;
Expand Down
8 changes: 4 additions & 4 deletions drivers/base/firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
2 changes: 1 addition & 1 deletion drivers/firmware/edd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion drivers/firmware/efivars.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ efivars_init(void)
/*
* For now we'll register the efi subsys within this driver
*/
efi_kset = kset_create_and_add("efi", NULL, &firmware_kset->kobj);
efi_kset = kset_create_and_add("efi", NULL, firmware_kobj);
if (!efi_kset) {
printk(KERN_ERR "efivars: Firmware registration failed.\n");
error = -ENOMEM;
Expand Down
2 changes: 1 addition & 1 deletion drivers/parisc/pdc_stable.c
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,7 @@ pdc_stable_init(void)
pdcs_osid = (u16)(result >> 16);

/* For now we'll register the stable kset within this driver */
stable_kset = kset_create_and_add("stable", NULL, &firmware_kset->kobj);
stable_kset = kset_create_and_add("stable", NULL, firmware_kobj);
if (!stable_kset) {
rc = -ENOMEM;
goto fail_firmreg;
Expand Down
4 changes: 2 additions & 2 deletions include/linux/kobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ extern struct kset *kernel_kset;
extern struct kobject *hypervisor_kobj;
/* The global /sys/power/ kset for people to chain off of */
extern struct kset *power_kset;
/* The global /sys/firmware/ kset for people to chain off of */
extern struct kset *firmware_kset;
/* The global /sys/firmware/ kobject for people to chain off of */
extern struct kobject *firmware_kobj;

extern int __must_check subsystem_register(struct kset *);
extern void subsystem_unregister(struct kset *);
Expand Down

0 comments on commit f62ed9e

Please sign in to comment.