summaryrefslogtreecommitdiff
path: root/include/linux/power_supply.h
diff options
context:
space:
mode:
authorThomas Weißschuh <linux@weissschuh.net>2024-10-17 06:37:33 +0200
committerSebastian Reichel <sebastian.reichel@collabora.com>2024-10-17 22:42:08 +0200
commit44fcc479a574a4055fb6aed1f786d39999466383 (patch)
treef5342168ac264cdf3a23599aa6d2f8ffb2844718 /include/linux/power_supply.h
parent1e5335d00707220b46c28ab09cd09a1837b84978 (diff)
power: supply: hwmon: move interface to private header
The interface of power_supply_hwmon.c is only meant to be used by the psy core. Remove it from the public header file and use the private one instead. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Link: https://lore.kernel.org/r/20241017-power-supply-cleanups-v2-1-cb0f5deab088@weissschuh.net Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'include/linux/power_supply.h')
-rw-r--r--include/linux/power_supply.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h
index c1d6cb7f4c40..b98106e1a90f 100644
--- a/include/linux/power_supply.h
+++ b/include/linux/power_supply.h
@@ -937,19 +937,6 @@ static inline bool power_supply_is_watt_property(enum power_supply_property psp)
return false;
}
-#ifdef CONFIG_POWER_SUPPLY_HWMON
-int power_supply_add_hwmon_sysfs(struct power_supply *psy);
-void power_supply_remove_hwmon_sysfs(struct power_supply *psy);
-#else
-static inline int power_supply_add_hwmon_sysfs(struct power_supply *psy)
-{
- return 0;
-}
-
-static inline
-void power_supply_remove_hwmon_sysfs(struct power_supply *psy) {}
-#endif
-
#ifdef CONFIG_SYSFS
ssize_t power_supply_charge_behaviour_show(struct device *dev,
unsigned int available_behaviours,