aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/saa711x.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/saa711x.c')
-rw-r--r--drivers/media/video/saa711x.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/video/saa711x.c b/drivers/media/video/saa711x.c
index 9aa8827de2c3..31f7b950b01c 100644
--- a/drivers/media/video/saa711x.c
+++ b/drivers/media/video/saa711x.c
@@ -36,7 +36,6 @@
36#include <asm/pgtable.h> 36#include <asm/pgtable.h>
37#include <asm/page.h> 37#include <asm/page.h>
38#include <linux/sched.h> 38#include <linux/sched.h>
39#include <asm/segment.h>
40#include <linux/types.h> 39#include <linux/types.h>
41#include <asm/uaccess.h> 40#include <asm/uaccess.h>
42#include <linux/videodev.h> 41#include <linux/videodev.h>
@@ -60,7 +59,7 @@ MODULE_PARM_DESC(debug, " Set the default Debug level. Default: 0 (Off) - (0-1)
60#define dprintk(num, format, args...) \ 59#define dprintk(num, format, args...) \
61 do { \ 60 do { \
62 if (debug >= num) \ 61 if (debug >= num) \
63 printk(format , ##args); \ 62 printk(format, ##args); \
64 } while (0) 63 } while (0)
65 64
66/* ----------------------------------------------------------------------- */ 65/* ----------------------------------------------------------------------- */
@@ -324,7 +323,7 @@ saa711x_command (struct i2c_client *client,
324 323
325 case VIDEO_MODE_SECAM: 324 case VIDEO_MODE_SECAM:
326 saa711x_write(client, 0x08, 325 saa711x_write(client, 0x08,
327 (decoder->reg[0x0e] & 0x3f) | 0x00); 326 (decoder->reg[0x08] & 0x3f) | 0x00);
328 saa711x_write(client, 0x0e, 327 saa711x_write(client, 0x0e,
329 (decoder->reg[0x0e] & 0x8f) | 0x50); 328 (decoder->reg[0x0e] & 0x8f) | 0x50);
330 break; 329 break;