diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-16 18:48:36 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-16 18:48:36 -0300 |
commit | 503d9b1655773c65ef2d3c1d7f6e67c91717ec74 (patch) | |
tree | fbc844344fb21341035d9d2120f8399f63792b52 /linux/drivers/media/video/saa7115.c | |
parent | 301884879d059388ef5331510d070e87c566a802 (diff) | |
download | mediapointer-dvb-s2-503d9b1655773c65ef2d3c1d7f6e67c91717ec74.tar.gz mediapointer-dvb-s2-503d9b1655773c65ef2d3c1d7f6e67c91717ec74.tar.bz2 |
Fixed a typo iif instead of if
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/saa7115.c')
-rw-r--r-- | linux/drivers/media/video/saa7115.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/saa7115.c b/linux/drivers/media/video/saa7115.c index a52c9b5d6..4f70190ca 100644 --- a/linux/drivers/media/video/saa7115.c +++ b/linux/drivers/media/video/saa7115.c @@ -744,7 +744,7 @@ static void saa7115_set_v4lstd(struct i2c_client *client, v4l2_std_id std) reg|=0x20; } else if (std == V4L2_STD_PAL_60) { reg|=0x10; - } else iif (std == V4L2_STD_NTSC_M_JP) { + } else if (std == V4L2_STD_NTSC_M_JP) { reg|=0x40; } saa7115_write(client, 0x0e, reg); |