diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-03-24 13:23:25 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-17 23:51:16 -0400 |
commit | d7d93387421b52f8c9240ce82b368ad34bb40cd8 (patch) | |
tree | d0fc3b19fd458ec7a09797341fea682552fadde8 /drivers | |
parent | 51e9dd3249eba4654f12a9473b8bfb5ddbf00d00 (diff) |
V4L/DVB: cx25821-video.c: fix table indent
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/cx25821/cx25821-video.c | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/drivers/staging/cx25821/cx25821-video.c b/drivers/staging/cx25821/cx25821-video.c index 8cd3986d2e5c..e3dff2eccfff 100644 --- a/drivers/staging/cx25821/cx25821-video.c +++ b/drivers/staging/cx25821/cx25821-video.c | |||
@@ -54,31 +54,31 @@ static void init_controls(struct cx25821_dev *dev, int chan_num); | |||
54 | 54 | ||
55 | struct cx25821_fmt formats[] = { | 55 | struct cx25821_fmt formats[] = { |
56 | { | 56 | { |
57 | .name = "8 bpp, gray", | 57 | .name = "8 bpp, gray", |
58 | .fourcc = V4L2_PIX_FMT_GREY, | 58 | .fourcc = V4L2_PIX_FMT_GREY, |
59 | .depth = 8, | 59 | .depth = 8, |
60 | .flags = FORMAT_FLAGS_PACKED, | 60 | .flags = FORMAT_FLAGS_PACKED, |
61 | }, { | 61 | }, { |
62 | .name = "4:1:1, packed, Y41P", | 62 | .name = "4:1:1, packed, Y41P", |
63 | .fourcc = V4L2_PIX_FMT_Y41P, | 63 | .fourcc = V4L2_PIX_FMT_Y41P, |
64 | .depth = 12, | 64 | .depth = 12, |
65 | .flags = FORMAT_FLAGS_PACKED, | 65 | .flags = FORMAT_FLAGS_PACKED, |
66 | }, { | 66 | }, { |
67 | .name = "4:2:2, packed, YUYV", | 67 | .name = "4:2:2, packed, YUYV", |
68 | .fourcc = V4L2_PIX_FMT_YUYV, | 68 | .fourcc = V4L2_PIX_FMT_YUYV, |
69 | .depth = 16, | 69 | .depth = 16, |
70 | .flags = FORMAT_FLAGS_PACKED, | 70 | .flags = FORMAT_FLAGS_PACKED, |
71 | }, { | 71 | }, { |
72 | .name = "4:2:2, packed, UYVY", | 72 | .name = "4:2:2, packed, UYVY", |
73 | .fourcc = V4L2_PIX_FMT_UYVY, | 73 | .fourcc = V4L2_PIX_FMT_UYVY, |
74 | .depth = 16, | 74 | .depth = 16, |
75 | .flags = FORMAT_FLAGS_PACKED, | 75 | .flags = FORMAT_FLAGS_PACKED, |
76 | }, { | 76 | }, { |
77 | .name = "4:2:0, YUV", | 77 | .name = "4:2:0, YUV", |
78 | .fourcc = V4L2_PIX_FMT_YUV420, | 78 | .fourcc = V4L2_PIX_FMT_YUV420, |
79 | .depth = 12, | 79 | .depth = 12, |
80 | .flags = FORMAT_FLAGS_PACKED, | 80 | .flags = FORMAT_FLAGS_PACKED, |
81 | }, | 81 | }, |
82 | }; | 82 | }; |
83 | 83 | ||
84 | int get_format_size(void) | 84 | int get_format_size(void) |