summaryrefslogtreecommitdiff
path: root/drivers/power
diff options
context:
space:
mode:
authorSebastian Reichel <sebastian.reichel@collabora.com>2024-03-02 01:58:27 +0300
committerSebastian Reichel <sebastian.reichel@collabora.com>2024-03-06 02:21:34 +0300
commitea1ec769d1f01a9900127e83e63dfdd77d096c8a (patch)
tree74f6b911a89263e44e30acfdfcb6019c1a3b980d /drivers/power
parent68ade0976df7979eac5f1d46320ff798f5043af6 (diff)
downloadlinux-ea1ec769d1f01a9900127e83e63dfdd77d096c8a.tar.xz
power: supply: core: simplify power_supply_class_init
Technically the sysfs attributes should be initialized before the class is registered, since that will use them. As a nice side effect this nicely simplifies the code, since it allows dropping the helper variable. Reviewed-by: Ricardo B. Marliere <ricardo@marliere.net> Link: https://lore.kernel.org/r/20240301-psy-class-cleanup-v1-2-aebe8c4b6b08@collabora.com Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/supply/power_supply_core.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/power/supply/power_supply_core.c b/drivers/power/supply/power_supply_core.c
index 0eb8a57dda70..4daea6ed8f1d 100644
--- a/drivers/power/supply/power_supply_core.c
+++ b/drivers/power/supply/power_supply_core.c
@@ -1622,15 +1622,8 @@ EXPORT_SYMBOL_GPL(power_supply_get_drvdata);
static int __init power_supply_class_init(void)
{
- int err;
-
- err = class_register(&power_supply_class);
- if (err)
- return err;
-
power_supply_init_attrs();
-
- return 0;
+ return class_register(&power_supply_class);
}
static void __exit power_supply_class_exit(void)