]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Input: goodix - fix alignment issues
authorIrina Tirdea <irina.tirdea@intel.com>
Tue, 9 Jun 2015 18:01:38 +0000 (11:01 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Tue, 9 Jun 2015 18:23:25 +0000 (11:23 -0700)
Fix alignment to match open parenthesis detected by running checkpatch.pl
--strict.

Signed-off-by: Irina Tirdea <irina.tirdea@intel.com>
Acked-by: Bastien Nocera <hadess@hadess.net>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/goodix.c

index 0d93b1e5e28e13187d9160f9985f29857e5df8e4..099fc466bd1695a3d71489a0eb1965b13c275906 100644 (file)
@@ -69,7 +69,7 @@ static const unsigned long goodix_irq_flags[] = {
  * @len: length of the buffer to write
  */
 static int goodix_i2c_read(struct i2c_client *client,
-                               u16 reg, u8 *buf, int len)
+                          u16 reg, u8 *buf, int len)
 {
        struct i2c_msg msgs[2];
        u16 wbuf = cpu_to_be16(reg);
@@ -78,7 +78,7 @@ static int goodix_i2c_read(struct i2c_client *client,
        msgs[0].flags = 0;
        msgs[0].addr  = client->addr;
        msgs[0].len   = 2;
-       msgs[0].buf   = (u8 *) &wbuf;
+       msgs[0].buf   = (u8 *)&wbuf;
 
        msgs[1].flags = I2C_M_RD;
        msgs[1].addr  = client->addr;
@@ -199,8 +199,8 @@ static void goodix_read_config(struct goodix_ts_data *ts)
        int error;
 
        error = goodix_i2c_read(ts->client, GOODIX_REG_CONFIG_DATA,
-                             config,
-                          GOODIX_CONFIG_MAX_LENGTH);
+                               config,
+                               GOODIX_CONFIG_MAX_LENGTH);
        if (error) {
                dev_warn(&ts->client->dev,
                         "Error reading config (%d), using defaults\n",
@@ -296,10 +296,10 @@ static int goodix_request_input_dev(struct goodix_ts_data *ts)
                                  BIT_MASK(EV_KEY) |
                                  BIT_MASK(EV_ABS);
 
-       input_set_abs_params(ts->input_dev, ABS_MT_POSITION_X, 0,
-                               ts->abs_x_max, 0, 0);
-       input_set_abs_params(ts->input_dev, ABS_MT_POSITION_Y, 0,
-                               ts->abs_y_max, 0, 0);
+       input_set_abs_params(ts->input_dev, ABS_MT_POSITION_X,
+                            0, ts->abs_x_max, 0, 0);
+       input_set_abs_params(ts->input_dev, ABS_MT_POSITION_Y,
+                            0, ts->abs_y_max, 0, 0);
        input_set_abs_params(ts->input_dev, ABS_MT_WIDTH_MAJOR, 0, 255, 0, 0);
        input_set_abs_params(ts->input_dev, ABS_MT_TOUCH_MAJOR, 0, 255, 0, 0);