diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2011-06-12 07:02:43 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-08-03 12:42:31 -0700 |
commit | 7928e3776a73df3e51f028b11d28dffb340681a9 (patch) | |
tree | 69be607d38c4763a750200958bf43903f80d79d9 | |
parent | 6eba1b67f9d2138dfd1c73570e15d82f1ba6d8bd (diff) | |
download | linux-stable-7928e3776a73df3e51f028b11d28dffb340681a9.tar.gz linux-stable-7928e3776a73df3e51f028b11d28dffb340681a9.tar.bz2 linux-stable-7928e3776a73df3e51f028b11d28dffb340681a9.zip |
bttv: fix s_tuner for radio
commit a024c1a6b274e11596d124619e43c25560f64c01 upstream.
Fix typo: g_tuner should have been s_tuner.
Tested with a bttv card.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/media/video/bt8xx/bttv-driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/bt8xx/bttv-driver.c b/drivers/media/video/bt8xx/bttv-driver.c index 91399c94cd18..3ea1a5d2edff 100644 --- 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; } |