diff options
author | Ladislav Michl <ladis@linux-mips.org> | 2005-09-23 06:52:27 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:32:27 -0400 |
commit | 495515b351957e4f6155d1696132f53acc4d06e5 (patch) | |
tree | ce7fe8c50f7578d147d10b811497f3a246e917cd /drivers/media/video/saa7191.c | |
parent | 80b47346b0c83edab5d183376b41e9968bd5ac32 (diff) |
Let it compile again after i2c algo id removal. Sort headers.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'drivers/media/video/saa7191.c')
-rw-r--r-- | drivers/media/video/saa7191.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/drivers/media/video/saa7191.c b/drivers/media/video/saa7191.c index 454f5c1199b4..3ddbb62312be 100644 --- a/drivers/media/video/saa7191.c +++ b/drivers/media/video/saa7191.c | |||
@@ -9,16 +9,16 @@ | |||
9 | * published by the Free Software Foundation. | 9 | * published by the Free Software Foundation. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/module.h> | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/delay.h> | 12 | #include <linux/delay.h> |
15 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
16 | #include <linux/fs.h> | 14 | #include <linux/fs.h> |
15 | #include <linux/init.h> | ||
17 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
18 | #include <linux/major.h> | 17 | #include <linux/major.h> |
19 | #include <linux/slab.h> | 18 | #include <linux/module.h> |
20 | #include <linux/mm.h> | 19 | #include <linux/mm.h> |
21 | #include <linux/sched.h> | 20 | #include <linux/sched.h> |
21 | #include <linux/slab.h> | ||
22 | 22 | ||
23 | #include <linux/videodev.h> | 23 | #include <linux/videodev.h> |
24 | #include <linux/video_decoder.h> | 24 | #include <linux/video_decoder.h> |
@@ -33,8 +33,6 @@ MODULE_VERSION(SAA7191_MODULE_VERSION); | |||
33 | MODULE_AUTHOR("Mikael Nousiainen <tmnousia@cc.hut.fi>"); | 33 | MODULE_AUTHOR("Mikael Nousiainen <tmnousia@cc.hut.fi>"); |
34 | MODULE_LICENSE("GPL"); | 34 | MODULE_LICENSE("GPL"); |
35 | 35 | ||
36 | #define VINO_ADAPTER (I2C_ALGO_SGI | I2C_HW_SGI_VINO) | ||
37 | |||
38 | struct saa7191 { | 36 | struct saa7191 { |
39 | struct i2c_client *client; | 37 | struct i2c_client *client; |
40 | 38 | ||
@@ -337,7 +335,7 @@ out_free_client: | |||
337 | static int saa7191_probe(struct i2c_adapter *adap) | 335 | static int saa7191_probe(struct i2c_adapter *adap) |
338 | { | 336 | { |
339 | /* Always connected to VINO */ | 337 | /* Always connected to VINO */ |
340 | if (adap->id == VINO_ADAPTER) | 338 | if (adap->id == I2C_HW_SGI_VINO) |
341 | return saa7191_attach(adap, SAA7191_ADDR, 0); | 339 | return saa7191_attach(adap, SAA7191_ADDR, 0); |
342 | /* Feel free to add probe here :-) */ | 340 | /* Feel free to add probe here :-) */ |
343 | return -ENODEV; | 341 | return -ENODEV; |
@@ -364,7 +362,7 @@ static int saa7191_command(struct i2c_client *client, unsigned int cmd, | |||
364 | 362 | ||
365 | cap->flags = VIDEO_DECODER_PAL | VIDEO_DECODER_NTSC | | 363 | cap->flags = VIDEO_DECODER_PAL | VIDEO_DECODER_NTSC | |
366 | VIDEO_DECODER_SECAM | VIDEO_DECODER_AUTO; | 364 | VIDEO_DECODER_SECAM | VIDEO_DECODER_AUTO; |
367 | cap->inputs = (client->adapter->id == VINO_ADAPTER) ? 2 : 1; | 365 | cap->inputs = (client->adapter->id == I2C_HW_SGI_VINO) ? 2 : 1; |
368 | cap->outputs = 1; | 366 | cap->outputs = 1; |
369 | break; | 367 | break; |
370 | } | 368 | } |
@@ -422,7 +420,7 @@ static int saa7191_command(struct i2c_client *client, unsigned int cmd, | |||
422 | int *iarg = arg; | 420 | int *iarg = arg; |
423 | 421 | ||
424 | switch (client->adapter->id) { | 422 | switch (client->adapter->id) { |
425 | case VINO_ADAPTER: | 423 | case I2C_HW_SGI_VINO: |
426 | return saa7191_set_input(client, *iarg); | 424 | return saa7191_set_input(client, *iarg); |
427 | default: | 425 | default: |
428 | if (*iarg != 0) | 426 | if (*iarg != 0) |