aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/supply
diff options
context:
space:
mode:
authorMilan Djurovic <mdjurovic@zohomail.com>2021-03-27 00:36:05 -0700
committerSebastian Reichel <sebastian.reichel@collabora.com>2021-04-02 14:14:58 +0200
commit33ae8b03462e6cab130b505f97633feacf1743d0 (patch)
tree1c8f94aa56f40bfe9f7d077514984bd2cea2e1b6 /drivers/power/supply
parentpower: supply: max8997_charger: Switch to new binding (diff)
downloadlinux-dev-33ae8b03462e6cab130b505f97633feacf1743d0.tar.xz
linux-dev-33ae8b03462e6cab130b505f97633feacf1743d0.zip
power: supply: 88pm860x_battery: Remove unnecessary int for long long
Change 'long long int' to 'long long' because the int is unnecessary, as suggested by checkpatch.pl. Signed-off-by: Milan Djurovic <mdjurovic@zohomail.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply')
-rw-r--r--drivers/power/supply/88pm860x_battery.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/power/supply/88pm860x_battery.c b/drivers/power/supply/88pm860x_battery.c
index 590da88a17a2..f3f3f8cd1a7f 100644
--- a/drivers/power/supply/88pm860x_battery.c
+++ b/drivers/power/supply/88pm860x_battery.c
@@ -109,8 +109,8 @@ struct pm860x_battery_info {
};
struct ccnt {
- unsigned long long int pos;
- unsigned long long int neg;
+ unsigned long long pos;
+ unsigned long long neg;
unsigned int spos;
unsigned int sneg;