projects
/
wrapfs-2.6.35.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
056f681
)
bttv: fix s_tuner for radio
author
Hans Verkuil
<hans.verkuil@cisco.com>
Sun, 12 Jun 2011 10:02:43 +0000
(07:02 -0300)
committer
Andi Kleen
<ak@linux.intel.com>
Mon, 1 Aug 2011 20:55:03 +0000
(13:55 -0700)
[ upstream commit
a024c1a6b274e11596d124619e43c25560f64c01
]
Fix typo: g_tuner should have been s_tuner.
Tested with a bttv card.
Cc: stable@kernel.org
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
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 38c7f78ad9cf0bb3763ea373ed3c141f846670a5..9f8e8ad838adf3a76bc2767fded35f8ab37bb40d 100644
(file)
--- a/
drivers/media/video/bt8xx/bttv-driver.c
+++ b/
drivers/media/video/bt8xx/bttv-driver.c
@@
-3525,7
+3525,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;
}