Commit 33ae8b03 authored by Milan Djurovic's avatar Milan Djurovic Committed by Sebastian Reichel

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: default avatarMilan Djurovic <mdjurovic@zohomail.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent 416682f2
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment