[PATCH] power: supply: Fix errors

From: hanyu001
Date: Wed Jul 12 2023 - 02:16:59 EST


Fix the below checkpatch errors:

drivers/power/supply/ab8500_bmdata.c:186: ERROR: that open brace { should be on the previous line
drivers/power/supply/ab8500_bmdata.c:192: ERROR: that open brace { should be on the previous line

Signed-off-by: Yu Han <hanyu001@xxxxxxxxxx>
---
drivers/power/supply/ab8500_bmdata.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/power/supply/ab8500_bmdata.c b/drivers/power/supply/ab8500_bmdata.c
index 3e6ea22..a092727 100644
--- a/drivers/power/supply/ab8500_bmdata.c
+++ b/drivers/power/supply/ab8500_bmdata.c
@@ -184,14 +184,12 @@ int ab8500_bm_of_probe(struct power_supply *psy,
}

if (bi->alert_low_temp_charge_current_ua < 0 ||
- bi->alert_low_temp_charge_voltage_uv < 0)
- {
+ bi->alert_low_temp_charge_voltage_uv < 0){
bi->alert_low_temp_charge_current_ua = 300000;
bi->alert_low_temp_charge_voltage_uv = 4000000;
}
if (bi->alert_high_temp_charge_current_ua < 0 ||
- bi->alert_high_temp_charge_voltage_uv < 0)
- {
+ bi->alert_high_temp_charge_voltage_uv < 0){
bi->alert_high_temp_charge_current_ua = 300000;
bi->alert_high_temp_charge_voltage_uv = 4000000;
}