hwmon: (mr75203) fix coding style space errors
authorEliav Farber <farbere@amazon.com>
Thu, 8 Sep 2022 15:24:49 +0000 (15:24 +0000)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 19 Sep 2022 13:22:42 +0000 (06:22 -0700)
Fix: "ERROR: space required before the open parenthesis '('"

All of the errors were introduced before this series of patches.

Signed-off-by: Eliav Farber <farbere@amazon.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220908152449.35457-22-farbere@amazon.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/mr75203.c

index c9f72e1..667c764 100644 (file)
@@ -290,7 +290,7 @@ static int pvt_read_temp(struct device *dev, u32 attr, int channel, long *val)
                        return ret;
 
                ret = regmap_read(t_map, SDIF_DATA(channel), &nbs);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                nbs &= SAMPLE_DATA_MSK;
@@ -331,7 +331,7 @@ static int pvt_read_in(struct device *dev, u32 attr, int channel, long *val)
                        return ret;
 
                ret = regmap_read(v_map, VM_SDIF_DATA(vm_idx, ch_idx), &n);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                n &= SAMPLE_DATA_MSK;
@@ -427,19 +427,19 @@ static int pvt_init(struct pvt_device *pvt)
 
        if (t_num) {
                ret = regmap_write(t_map, SDIF_SMPL_CTRL, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(t_map, SDIF_HALT, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(t_map, CLK_SYNTH, clk_synth);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(t_map, SDIF_DISABLE, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_read_poll_timeout(t_map, SDIF_STAT,
@@ -452,7 +452,7 @@ static int pvt_init(struct pvt_device *pvt)
                val = CFG0_MODE_2 | CFG0_PARALLEL_OUT | CFG0_12_BIT |
                      IP_CFG << SDIF_ADDR_SFT | SDIF_WRN_W | SDIF_PROG;
                ret = regmap_write(t_map, SDIF_W, val);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_read_poll_timeout(t_map, SDIF_STAT,
@@ -465,7 +465,7 @@ static int pvt_init(struct pvt_device *pvt)
                val = POWER_DELAY_CYCLE_256 | IP_TMR << SDIF_ADDR_SFT |
                              SDIF_WRN_W | SDIF_PROG;
                ret = regmap_write(t_map, SDIF_W, val);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_read_poll_timeout(t_map, SDIF_STAT,
@@ -479,39 +479,39 @@ static int pvt_init(struct pvt_device *pvt)
                      IP_CTRL << SDIF_ADDR_SFT |
                      SDIF_WRN_W | SDIF_PROG;
                ret = regmap_write(t_map, SDIF_W, val);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
        }
 
        if (p_num) {
                ret = regmap_write(p_map, SDIF_HALT, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(p_map, SDIF_DISABLE, BIT(p_num) - 1);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(p_map, CLK_SYNTH, clk_synth);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
        }
 
        if (v_num) {
                ret = regmap_write(v_map, SDIF_SMPL_CTRL, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(v_map, SDIF_HALT, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(v_map, CLK_SYNTH, clk_synth);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_write(v_map, SDIF_DISABLE, 0x0);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_read_poll_timeout(v_map, SDIF_STAT,
@@ -538,7 +538,7 @@ static int pvt_init(struct pvt_device *pvt)
                      CFG1_14_BIT | IP_CFG << SDIF_ADDR_SFT |
                      SDIF_WRN_W | SDIF_PROG;
                ret = regmap_write(v_map, SDIF_W, val);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_read_poll_timeout(v_map, SDIF_STAT,
@@ -551,7 +551,7 @@ static int pvt_init(struct pvt_device *pvt)
                val = POWER_DELAY_CYCLE_64 | IP_TMR << SDIF_ADDR_SFT |
                      SDIF_WRN_W | SDIF_PROG;
                ret = regmap_write(v_map, SDIF_W, val);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
 
                ret = regmap_read_poll_timeout(v_map, SDIF_STAT,
@@ -565,7 +565,7 @@ static int pvt_init(struct pvt_device *pvt)
                      IP_CTRL << SDIF_ADDR_SFT |
                      SDIF_WRN_W | SDIF_PROG;
                ret = regmap_write(v_map, SDIF_W, val);
-               if(ret < 0)
+               if (ret < 0)
                        return ret;
        }
 
@@ -822,7 +822,7 @@ static int mr75203_probe(struct platform_device *pdev)
        }
 
        ret = regmap_read(pvt->c_map, PVT_IP_CONFIG, &val);
-       if(ret < 0)
+       if (ret < 0)
                return ret;
 
        ts_num = (val & TS_NUM_MSK) >> TS_NUM_SFT;