Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75780
b: refs/heads/master
c: f62ed9e
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 25, 2008
1 parent 2278090 commit 67779a9
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 15f2f9b3a9db65aaf908fe7ee17bbe262ae3550f
refs/heads/master: f62ed9e33b3ccff54d66b08f82d11940bb9e269b
8 changes: 4 additions & 4 deletions trunk/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 trunk/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 trunk/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 trunk/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 trunk/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 trunk/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 trunk/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 67779a9

Please sign in to comment.