diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-10-31 13:48:23 +0000 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.co.uk> | 2017-11-06 13:49:57 +0100 |
commit | e7c984cc6f35766019039867875c788c4545147a (patch) | |
tree | de74e750175e69a8303ee4bc4e7220123ecbf7a5 /drivers/power | |
parent | 393ce139d5234a00200f9aaecb6048be138e0833 (diff) | |
download | linux-e7c984cc6f35766019039867875c788c4545147a.tar.gz linux-e7c984cc6f35766019039867875c788c4545147a.tar.bz2 linux-e7c984cc6f35766019039867875c788c4545147a.zip |
power: supply: pcf50633-charger: remove redundant variable charging_start
Variable charging_start is being set but is never read, it is therefore
redundant and can be removed. Cleans up sparse warning:
drivers/power/supply/pcf50633-charger.c:61:3: warning: Value stored to
'charging_start' is never read
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/supply/pcf50633-charger.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/power/supply/pcf50633-charger.c b/drivers/power/supply/pcf50633-charger.c index 1ad7ccce6075..1aba14046a83 100644 --- a/drivers/power/supply/pcf50633-charger.c +++ b/drivers/power/supply/pcf50633-charger.c @@ -43,7 +43,6 @@ int pcf50633_mbc_usb_curlim_set(struct pcf50633 *pcf, int ma) struct pcf50633_mbc *mbc = platform_get_drvdata(pcf->mbc_pdev); int ret = 0; u8 bits; - int charging_start = 1; u8 mbcs2, chgmod; unsigned int mbcc5; @@ -58,7 +57,6 @@ int pcf50633_mbc_usb_curlim_set(struct pcf50633 *pcf, int ma) ma = 100; } else { bits = PCF50633_MBCC7_USB_SUSPEND; - charging_start = 0; ma = 0; } |