kset: convert /sys/power to use kset_create

Dynamically create the kset instead of declaring it statically.  We also
rename power_subsys to power_kset to catch all users of the variable and
we properly export it so that people don't have to guess that it really
is present in the system.

The pseries code is wierd, why is it createing /sys/power if CONFIG_PM
is disabled?  Oh well, stupid big boxes ignoring config options...

Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman
2007-11-01 10:39:50 -07:00
parent 7405c1e15e
commit 039a5dcd2f
6 changed files with 15 additions and 19 deletions
+1 -1
View File
@@ -708,7 +708,7 @@ static struct attribute_group attr_group = {
static int __init pm_disk_init(void)
{
return sysfs_create_group(&power_subsys.kobj, &attr_group);
return sysfs_create_group(&power_kset->kobj, &attr_group);
}
core_initcall(pm_disk_init);
+5 -6
View File
@@ -276,8 +276,7 @@ EXPORT_SYMBOL(pm_suspend);
#endif /* CONFIG_SUSPEND */
decl_subsys(power, NULL);
struct kset *power_kset;
/**
* state - control system power state.
@@ -386,10 +385,10 @@ static struct attribute_group attr_group = {
static int __init pm_init(void)
{
int error = subsystem_register(&power_subsys);
if (!error)
error = sysfs_create_group(&power_subsys.kobj,&attr_group);
return error;
power_kset = kset_create_and_add("power", NULL, NULL);
if (!power_kset)
return -ENOMEM;
return sysfs_create_group(&power_kset->kobj, &attr_group);
}
core_initcall(pm_init);
-2
View File
@@ -63,8 +63,6 @@ static struct subsys_attribute _name##_attr = { \
.store = _name##_store, \
}
extern struct kset power_subsys;
/* Preferred image size in bytes (default 500 MB) */
extern unsigned long image_size;
extern int in_suspend;