projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50e9efd
)
[media] bttv: fix s_tuner for radio
author
Hans Verkuil
<
[email protected]
>
Sun, 12 Jun 2011 10:02:43 +0000
(07:02 -0300)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Thu, 7 Jul 2011 18:03:00 +0000
(15:03 -0300)
Fix typo: g_tuner should have been s_tuner.
Tested with a bttv card.
Cc:
[email protected]
Signed-off-by: Hans Verkuil <
[email protected]
>
Signed-off-by: Mauro Carvalho Chehab <
[email protected]
>
drivers/media/video/bt8xx/bttv-driver.c
patch
|
blob
|
history
diff --git
a/drivers/media/video/bt8xx/bttv-driver.c
b/drivers/media/video/bt8xx/bttv-driver.c
index a97cf2750bd99a3c41d071707dd16a3c285b1183..834a48394bce1bc4546f2754c24553a54119d862 100644
(file)
--- a/
drivers/media/video/bt8xx/bttv-driver.c
+++ b/
drivers/media/video/bt8xx/bttv-driver.c
@@
-3474,7
+3474,7
@@
static int radio_s_tuner(struct file *file, void *priv,
if (0 != t->index)
return -EINVAL;
- bttv_call_all(btv, tuner,
g
_tuner, t);
+ bttv_call_all(btv, tuner,
s
_tuner, t);
return 0;
}