diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2021-01-11 00:45:08 +0100 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2021-01-13 22:25:07 +0100 |
commit | cb6d6918c56ffd98e88164d5471f692d33dabf2b (patch) | |
tree | d96b20e367affaf5b864361980767d4e8dec3c9a /include/linux/wm97xx.h | |
parent | a3b4388ea19b055ec482114e227c58d0184edfa5 (diff) |
power: supply: wm97xx_battery: Convert to GPIO descriptor
This converts the WM97xx driver to use a GPIO descriptor
instead of passing a GPIO number thru platform data.
Like everything else in the driver, use a simple local
variable for the descriptor, it can only ever appear in
one instance anyway so it should not hurt.
After converting the driver I noticed that none of the
boardfiles actually define a meaningful GPIO line for
this, but hey, it is converted.
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Daniel Mack <daniel@zonque.org>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'include/linux/wm97xx.h')
-rw-r--r-- | include/linux/wm97xx.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/wm97xx.h b/include/linux/wm97xx.h index 58e082dadc68..462854f4f286 100644 --- a/include/linux/wm97xx.h +++ b/include/linux/wm97xx.h @@ -294,7 +294,6 @@ struct wm97xx { struct wm97xx_batt_pdata { int batt_aux; int temp_aux; - int charge_gpio; int min_voltage; int max_voltage; int batt_div; |