From patchwork Sun Jun 12 10:59:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans Verkuil X-Patchwork-Id: 872832 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p5CB0Jaa023215 for ; Sun, 12 Jun 2011 11:00:20 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753392Ab1FLLAQ (ORCPT ); Sun, 12 Jun 2011 07:00:16 -0400 Received: from smtp-vbr1.xs4all.nl ([194.109.24.21]:4940 "EHLO smtp-vbr1.xs4all.nl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753140Ab1FLLAF (ORCPT ); Sun, 12 Jun 2011 07:00:05 -0400 Received: from tschai.lan (215.80-203-102.nextgentel.com [80.203.102.215]) (authenticated bits=0) by smtp-vbr1.xs4all.nl (8.13.8/8.13.8) with ESMTP id p5CAxuhJ054298 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 12 Jun 2011 13:00:01 +0200 (CEST) (envelope-from hverkuil@xs4all.nl) From: Hans Verkuil To: linux-media@vger.kernel.org Cc: Mike Isely , Hans Verkuil Subject: [RFCv4 PATCH 5/8] tuner-core: fix tuner_resume: use t->mode instead of t->type. Date: Sun, 12 Jun 2011 12:59:46 +0200 Message-Id: X-Mailer: git-send-email 1.7.1 In-Reply-To: <1307876389-30347-1-git-send-email-hverkuil@xs4all.nl> References: <1307876389-30347-1-git-send-email-hverkuil@xs4all.nl> In-Reply-To: <980897e53f7cc2ec9bbbf58d9d451ee56a249309.1307875512.git.hans.verkuil@cisco.com> References: <980897e53f7cc2ec9bbbf58d9d451ee56a249309.1307875512.git.hans.verkuil@cisco.com> X-Virus-Scanned: by XS4ALL Virus Scanner Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Sun, 12 Jun 2011 11:00:20 +0000 (UTC) From: Hans Verkuil set_mode is called with t->type, which is the tuner type. Instead, use t->mode which is the actual tuner mode (i.e. radio vs tv). Signed-off-by: Hans Verkuil --- drivers/media/video/tuner-core.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index bf7fc33..ffe5de3 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c @@ -1201,7 +1201,7 @@ static int tuner_resume(struct i2c_client *c) tuner_dbg("resume\n"); if (!t->standby) - if (set_mode(t, t->type)) + if (set_mode(t, t->mode)) set_freq(t, 0); return 0; }