]> Pileus Git - ~andy/linux/commitdiff
[media] msp3400: convert struct i2c_msg initialization to C99 format
authorShubhrajyoti D <shubhrajyoti@ti.com>
Tue, 18 Sep 2012 11:22:34 +0000 (08:22 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 27 Sep 2012 10:39:31 +0000 (07:39 -0300)
Convert the struct i2c_msg initialization to C99 format. This makes
maintaining and editing the code simpler. Also helps once other fields
like transferred are added in future.

Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/i2c/msp3400-driver.c

index aeb22be7dcbd80a11c545cafcc0dfe5e2da62fdd..766305f69a2899264d3819e8ebbda7e165d488af 100644 (file)
@@ -119,12 +119,31 @@ int msp_reset(struct i2c_client *client)
        static u8 write[3]     = { I2C_MSP_DSP + 1, 0x00, 0x1e };
        u8 read[2];
        struct i2c_msg reset[2] = {
-               { client->addr, I2C_M_IGNORE_NAK, 3, reset_off },
-               { client->addr, I2C_M_IGNORE_NAK, 3, reset_on  },
+               {
+                       .addr = client->addr,
+                       .flags = I2C_M_IGNORE_NAK,
+                       .len = 3,
+                       .buf = reset_off
+               },
+               {
+                       .addr = client->addr,
+                       .flags = I2C_M_IGNORE_NAK,
+                       .len = 3,
+                       .buf = reset_on
+               },
        };
        struct i2c_msg test[2] = {
-               { client->addr, 0,        3, write },
-               { client->addr, I2C_M_RD, 2, read  },
+               {
+                       .addr = client->addr,
+                       .len = 3,
+                       .buf = write
+               },
+               {
+                       .addr = client->addr,
+                       .flags = I2C_M_RD,
+                       .len = 2,
+                       .buf = read
+               },
        };
 
        v4l_dbg(3, msp_debug, client, "msp_reset\n");
@@ -143,8 +162,17 @@ static int msp_read(struct i2c_client *client, int dev, int addr)
        u8 write[3];
        u8 read[2];
        struct i2c_msg msgs[2] = {
-               { client->addr, 0,        3, write },
-               { client->addr, I2C_M_RD, 2, read  }
+               {
+                       .addr = client->addr,
+                       .len = 3,
+                       .buf = write
+               },
+               {
+                       .addr = client->addr,
+                       .flags = I2C_M_RD,
+                       .len = 2,
+                       .buf = read
+               }
        };
 
        write[0] = dev + 1;