aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/supply
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>2021-05-07 12:19:26 -0400
committerSebastian Reichel <sebastian.reichel@collabora.com>2021-06-04 13:11:37 +0200
commitce0ae8324e0953292a9a745ec074497ba9c1c7d3 (patch)
tree92c7dd32008e100cc67ca41653ca3b7ce831f845 /drivers/power/supply
parentpower: supply: max17040: remove non-working POWER_SUPPLY_PROP_STATUS (diff)
downloadlinux-dev-ce0ae8324e0953292a9a745ec074497ba9c1c7d3.tar.xz
linux-dev-ce0ae8324e0953292a9a745ec074497ba9c1c7d3.zip
power: supply: max17040: simplify POWER_SUPPLY_PROP_ONLINE
The driver was reporting POWER_SUPPLY_PROP_ONLINE via platform data functions or '1' if no platform data was provided. Since there are no platforms using the driver with platform data (no board files with the driver), the online property can be simplified to always return '1'. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply')
-rw-r--r--drivers/power/supply/max17040_battery.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/power/supply/max17040_battery.c b/drivers/power/supply/max17040_battery.c
index f569af676471..aecc0c840351 100644
--- a/drivers/power/supply/max17040_battery.c
+++ b/drivers/power/supply/max17040_battery.c
@@ -219,8 +219,7 @@ static int max17040_get_version(struct max17040_chip *chip)
static int max17040_get_online(struct max17040_chip *chip)
{
- return chip->pdata && chip->pdata->battery_online ?
- chip->pdata->battery_online() : 1;
+ return 1;
}
static int max17040_get_of_data(struct max17040_chip *chip)