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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;