aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2021-06-27 01:47:49 +0200
committerSebastian Reichel <sebastian.reichel@collabora.com>2021-06-30 00:14:55 +0200
commitf1c74a6c07e76fcb31a4bcc1f437c4361a2674ce (patch)
tree12ff79f91bd1f2255b3786c5292830b1e970838f /drivers/power
parentpower: supply: axp288_fuel_gauge: remove redundant continue statement (diff)
downloadlinux-dev-f1c74a6c07e76fcb31a4bcc1f437c4361a2674ce.tar.xz
linux-dev-f1c74a6c07e76fcb31a4bcc1f437c4361a2674ce.zip
power: supply: ab8500: Fix an old bug
Trying to get the AB8500 charging driver working I ran into a bit of bitrot: we haven't used the driver for a while so errors in refactorings won't be noticed. This one is pretty self evident: use argument to the macro or we end up with a random pointer to something else. Cc: stable@vger.kernel.org Cc: Krzysztof Kozlowski <krzk@kernel.org> Cc: Marcus Cooper <codekipper@gmail.com> Fixes: 297d716f6260 ("power_supply: Change ownership from driver to core") Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/supply/ab8500-chargalg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/ab8500-chargalg.h b/drivers/power/supply/ab8500-chargalg.h
index 94a6f9068bc5..07e6ff50084f 100644
--- a/drivers/power/supply/ab8500-chargalg.h
+++ b/drivers/power/supply/ab8500-chargalg.h
@@ -15,7 +15,7 @@
* - POWER_SUPPLY_TYPE_USB,
* because only them store as drv_data pointer to struct ux500_charger.
*/
-#define psy_to_ux500_charger(x) power_supply_get_drvdata(psy)
+#define psy_to_ux500_charger(x) power_supply_get_drvdata(x)
/* Forward declaration */
struct ux500_charger;