]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] sn9c20x.c: fix checkpatch error: that open brace { should be on the previous...
authorMorgan Phillips <winter2718@gmail.com>
Mon, 8 Sep 2014 12:32:22 +0000 (09:32 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sun, 21 Sep 2014 23:59:35 +0000 (20:59 -0300)
Signed-off-by: Morgan Phillips <winter2718@gmail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/usb/gspca/sn9c20x.c

index 41a9a892f79c546c4a6b54edbee1ac09408897f6..95467f009d47008bd55e5ad5cacc808b06eb8ff6 100644 (file)
@@ -1787,8 +1787,9 @@ static int sd_init(struct gspca_dev *gspca_dev)
        struct sd *sd = (struct sd *) gspca_dev;
        int i;
        u8 value;
-       u8 i2c_init[9] =
-               {0x80, sd->i2c_addr, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03};
+       u8 i2c_init[9] = {
+               0x80, sd->i2c_addr, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03
+       };
 
        for (i = 0; i < ARRAY_SIZE(bridge_init); i++) {
                value = bridge_init[i][1];
@@ -2242,8 +2243,9 @@ static void sd_pkt_scan(struct gspca_dev *gspca_dev,
 {
        struct sd *sd = (struct sd *) gspca_dev;
        int avg_lum, is_jpeg;
-       static const u8 frame_header[] =
-               {0xff, 0xff, 0x00, 0xc4, 0xc4, 0x96};
+       static const u8 frame_header[] = {
+               0xff, 0xff, 0x00, 0xc4, 0xc4, 0x96
+       };
 
        is_jpeg = (sd->fmt & 0x03) == 0;
        if (len >= 64 && memcmp(data, frame_header, 6) == 0) {