diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-08-27 17:16:54 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:07:29 -0400 |
commit | b930e1d851c3ffbf82127bd0e4d72ffe94d4b7f2 (patch) | |
tree | 190561aa866401ac4d2b45f7a6c6bb5d9cb982a3 /drivers/media/video/msp3400-driver.c | |
parent | 38051450b378ef2cb51dff76a6b8299f59129172 (diff) |
V4L/DVB (6125): whitespace cleanup: replace leading spaces with tabs
There were many instances of 7-space indents spread throughout
the v4l-dvb tree.
This patch replaces the 7-space indents with tabs. The whitespace cleaner
script doesn't catch these, because it assumes that all indents are 8-space.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/msp3400-driver.c')
-rw-r--r-- | drivers/media/video/msp3400-driver.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c index e9d400e19a5d..c0c87e06259b 100644 --- a/drivers/media/video/msp3400-driver.c +++ b/drivers/media/video/msp3400-driver.c | |||
@@ -244,17 +244,17 @@ int msp_write_dsp(struct i2c_client *client, int addr, int val) | |||
244 | * ----------------------------------------------------------------------- */ | 244 | * ----------------------------------------------------------------------- */ |
245 | 245 | ||
246 | static int scarts[3][9] = { | 246 | static int scarts[3][9] = { |
247 | /* MASK IN1 IN2 IN3 IN4 IN1_DA IN2_DA MONO MUTE */ | 247 | /* MASK IN1 IN2 IN3 IN4 IN1_DA IN2_DA MONO MUTE */ |
248 | /* SCART DSP Input select */ | 248 | /* SCART DSP Input select */ |
249 | { 0x0320, 0x0000, 0x0200, 0x0300, 0x0020, -1, -1, 0x0100, 0x0320 }, | 249 | { 0x0320, 0x0000, 0x0200, 0x0300, 0x0020, -1, -1, 0x0100, 0x0320 }, |
250 | /* SCART1 Output select */ | 250 | /* SCART1 Output select */ |
251 | { 0x0c40, 0x0440, 0x0400, 0x0000, 0x0840, 0x0c00, 0x0040, 0x0800, 0x0c40 }, | 251 | { 0x0c40, 0x0440, 0x0400, 0x0000, 0x0840, 0x0c00, 0x0040, 0x0800, 0x0c40 }, |
252 | /* SCART2 Output select */ | 252 | /* SCART2 Output select */ |
253 | { 0x3080, 0x1000, 0x1080, 0x2080, 0x3080, 0x0000, 0x0080, 0x2000, 0x3000 }, | 253 | { 0x3080, 0x1000, 0x1080, 0x2080, 0x3080, 0x0000, 0x0080, 0x2000, 0x3000 }, |
254 | }; | 254 | }; |
255 | 255 | ||
256 | static char *scart_names[] = { | 256 | static char *scart_names[] = { |
257 | "in1", "in2", "in3", "in4", "in1 da", "in2 da", "mono", "mute" | 257 | "in1", "in2", "in3", "in4", "in1 da", "in2 da", "mono", "mute" |
258 | }; | 258 | }; |
259 | 259 | ||
260 | void msp_set_scart(struct i2c_client *client, int in, int out) | 260 | void msp_set_scart(struct i2c_client *client, int in, int out) |