diff options
author | Roman Kiryanov <rkir@google.com> | 2018-12-18 16:31:37 -0800 |
---|---|---|
committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2019-01-20 22:29:36 +0100 |
commit | 617ee863ed34c1c75c9d8d317b8b7f049420774b (patch) | |
tree | eed2995f8a049f529abf77ce9ef07b8ca459b531 /drivers/power/supply | |
parent | 5fbde356cb09a418bb0838c863ab610439d3dac0 (diff) | |
download | linux-617ee863ed34c1c75c9d8d317b8b7f049420774b.tar.bz2 |
drivers: power: supply: goldfish_battery: Fix alignment
Align two values as other values below.
Signed-off-by: Roman Kiryanov <rkir@google.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Diffstat (limited to 'drivers/power/supply')
-rw-r--r-- | drivers/power/supply/goldfish_battery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/power/supply/goldfish_battery.c b/drivers/power/supply/goldfish_battery.c index f65ceb50d588..9937e164b467 100644 --- a/drivers/power/supply/goldfish_battery.c +++ b/drivers/power/supply/goldfish_battery.c @@ -34,9 +34,9 @@ struct goldfish_battery_data { enum { /* status register */ - BATTERY_INT_STATUS = 0x00, + BATTERY_INT_STATUS = 0x00, /* set this to enable IRQ */ - BATTERY_INT_ENABLE = 0x04, + BATTERY_INT_ENABLE = 0x04, BATTERY_AC_ONLINE = 0x08, BATTERY_STATUS = 0x0C, |