aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2005-11-09 00:38:11 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-09 10:56:24 -0500
commitb228ede44c1cded7f3dadbb8bfaeaec97f7885e8 (patch)
treee2b2106bfc4d487015985ca7f2207eee586468c9
parent52c02fcd00cf6fb6f5b2c8beae3b283c63cf1210 (diff)
[PATCH] v4l: 851: fixed broken api link and indentation
- Fixed broken API link and indentation. Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru> Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--Documentation/video4linux/API.html2
-rw-r--r--drivers/media/video/tuner-core.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/video4linux/API.html b/Documentation/video4linux/API.html
index 441407b12a9f..afbe9ae7ee96 100644
--- a/Documentation/video4linux/API.html
+++ b/Documentation/video4linux/API.html
@@ -8,7 +8,7 @@ V4L original API</a>
8</td><td> 8</td><td>
9Obsoleted by V4L2 API 9Obsoleted by V4L2 API
10</td></tr><tr><td> 10</td></tr><tr><td>
11<A HREF=http://www.linuxtv.org/downloads/video4linux/API/V4L2_API.html> 11<A HREF=http://www.linuxtv.org/downloads/video4linux/API/V4L2_API>
12V4L2 API</a> 12V4L2 API</a>
13</td><td> 13</td><td>
14Should be used for new projects 14Should be used for new projects
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c
index fce18638134a..735b62b3c08e 100644
--- a/drivers/media/video/tuner-core.c
+++ b/drivers/media/video/tuner-core.c
@@ -369,7 +369,7 @@ static int tuner_attach(struct i2c_adapter *adap, int addr, int kind)
369 /* If chip is not tda8290, don't register. 369 /* If chip is not tda8290, don't register.
370 since it can be tda9887*/ 370 since it can be tda9887*/
371 if (tda8290_probe(&t->i2c) != 0) { 371 if (tda8290_probe(&t->i2c) != 0) {
372 tuner_dbg("chip at addr %x is not a tda8290\n", addr); 372 tuner_dbg("chip at addr %x is not a tda8290\n", addr);
373 kfree(t); 373 kfree(t);
374 return 0; 374 return 0;
375 } 375 }