]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
V4L/DVB: cx25821-video.c: fix table indent
authorMauro Carvalho Chehab <mchehab@redhat.com>
Wed, 24 Mar 2010 17:23:25 +0000 (14:23 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 18 May 2010 03:51:16 +0000 (00:51 -0300)
Table indent were likely damaged by Lindent. Fix it.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: Palash Bandyopadhyay <palash.bandyopadhyay@conexant.com>
drivers/staging/cx25821/cx25821-video.c

index 8cd3986d2e5c3de059a94b9050ba00f426e65ab8..e3dff2eccfff88f8230d183127c0e415dbbff4fc 100644 (file)
@@ -54,31 +54,31 @@ static void init_controls(struct cx25821_dev *dev, int chan_num);
 
 struct cx25821_fmt formats[] = {
        {
-        .name = "8 bpp, gray",
-        .fourcc = V4L2_PIX_FMT_GREY,
-        .depth = 8,
-        .flags = FORMAT_FLAGS_PACKED,
+               .name = "8 bpp, gray",
+               .fourcc = V4L2_PIX_FMT_GREY,
+               .depth = 8,
+               .flags = FORMAT_FLAGS_PACKED,
         }, {
-            .name = "4:1:1, packed, Y41P",
-            .fourcc = V4L2_PIX_FMT_Y41P,
-            .depth = 12,
-            .flags = FORMAT_FLAGS_PACKED,
-            }, {
-                .name = "4:2:2, packed, YUYV",
-                .fourcc = V4L2_PIX_FMT_YUYV,
-                .depth = 16,
-                .flags = FORMAT_FLAGS_PACKED,
-                }, {
-                    .name = "4:2:2, packed, UYVY",
-                    .fourcc = V4L2_PIX_FMT_UYVY,
-                    .depth = 16,
-                    .flags = FORMAT_FLAGS_PACKED,
-                    }, {
-                        .name = "4:2:0, YUV",
-                        .fourcc = V4L2_PIX_FMT_YUV420,
-                        .depth = 12,
-                        .flags = FORMAT_FLAGS_PACKED,
-                        },
+               .name = "4:1:1, packed, Y41P",
+               .fourcc = V4L2_PIX_FMT_Y41P,
+               .depth = 12,
+               .flags = FORMAT_FLAGS_PACKED,
+       }, {
+               .name = "4:2:2, packed, YUYV",
+               .fourcc = V4L2_PIX_FMT_YUYV,
+               .depth = 16,
+               .flags = FORMAT_FLAGS_PACKED,
+       }, {
+               .name = "4:2:2, packed, UYVY",
+               .fourcc = V4L2_PIX_FMT_UYVY,
+               .depth = 16,
+               .flags = FORMAT_FLAGS_PACKED,
+       }, {
+               .name = "4:2:0, YUV",
+               .fourcc = V4L2_PIX_FMT_YUV420,
+               .depth = 12,
+               .flags = FORMAT_FLAGS_PACKED,
+       },
 };
 
 int get_format_size(void)