This fixes the errors reported by checkpatch.pl:
ERROR: space prohibited before that ',' (ctx:WxW)
ERROR: code indent should use tabs where possible
Signed-off-by: Slawomir Stepien <sst@poczta.fm>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
         * Startup Time = <lookup_table_value> / ADC Clock
         */
        const int startup_lookup[] = {
-               0  , 8  , 16 , 24 ,
-               64 , 80 , 96 , 112,
+               0,   8,   16,  24,
+               64,  80,  96,  112,
                512, 576, 640, 704,
                768, 832, 896, 960
                };
                        ret = -EINVAL;
                        goto error_ret;
                }
-               trig->name = name;
+               trig->name = name;
 
                if (of_property_read_u32(trig_node, "trigger-value", &prop)) {
                        dev_err(&idev->dev, "Missing trigger-value property in the DT.\n");
                        ret = -EINVAL;
                        goto error_ret;
                }
-               trig->value = prop;
+               trig->value = prop;
                trig->is_external = of_property_read_bool(trig_node, "trigger-external");
                i++;
        }