[PATCH] power: supply: Fix errors

hanyu001@208suo.com posted 1 patch 2 years, 7 months ago
drivers/power/supply/ab8500_bmdata.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
[PATCH] power: supply: Fix errors
Posted by hanyu001@208suo.com 2 years, 7 months ago
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(-)

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;
      }