From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mx1.redhat.com ([209.132.183.28]:32996 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751847Ab1FLOn3 (ORCPT ); Sun, 12 Jun 2011 10:43:29 -0400 Message-ID: <4DF4D08C.8050801@redhat.com> Date: Sun, 12 Jun 2011 11:43:24 -0300 From: Mauro Carvalho Chehab MIME-Version: 1.0 To: Hans Verkuil CC: linux-media@vger.kernel.org, Mike Isely , Hans Verkuil Subject: Re: [RFCv4 PATCH 8/8] bttv: fix s_tuner for radio. References: <1307876389-30347-1-git-send-email-hverkuil@xs4all.nl> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit List-ID: Sender: Em 12-06-2011 07:59, Hans Verkuil escreveu: > From: Hans Verkuil > > Fix typo: g_tuner should have been s_tuner. > > Tested with a bttv card. OK. > > Signed-off-by: Hans Verkuil > --- > 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 a97cf27..834a483 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; > } >