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;
}
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@208suo.com> --- drivers/power/supply/ab8500_bmdata.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-)