From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758806AbYIDSsj (ORCPT ); Thu, 4 Sep 2008 14:48:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758594AbYIDSme (ORCPT ); Thu, 4 Sep 2008 14:42:34 -0400 Received: from mail.work.de ([212.12.32.20]:42263 "EHLO mail.work.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758585AbYIDSmd (ORCPT ); Thu, 4 Sep 2008 14:42:33 -0400 Message-ID: <48C02C15.3010606@gmail.com> Date: Thu, 04 Sep 2008 22:42:29 +0400 From: Manu Abraham User-Agent: Thunderbird 1.5.0.14ubu (X11/20080306) MIME-Version: 1.0 To: linux-kernel@vger.kernel.org, v4l-dvb-maintainer@linuxtv.org, akpm@linux-foundation.org Subject: DVB Update [PATCH 28/31] multiproto tree X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/mixed; boundary="------------020205060200090200050806" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This is a multi-part message in MIME format. --------------020205060200090200050806 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit >>From 983684e316e3450f290588e55c299af6134a73d9 Mon Sep 17 00:00:00 2001 From: Manu Abraham Date: Thu, 4 Sep 2008 14:53:34 +0200 Subject: [PATCH] DVB fix using a wrong field A wrong field was used, although not a routine that we are using after the API update. From: Manu Abraham Signed-off-by: Manu Abraham dvb_frontend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --------------020205060200090200050806 Content-Type: text/x-patch; name="28.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="28.patch" >>From 983684e316e3450f290588e55c299af6134a73d9 Mon Sep 17 00:00:00 2001 From: Manu Abraham Date: Thu, 4 Sep 2008 14:53:34 +0200 Subject: [PATCH] DVB fix using a wrong field A wrong field was used, although not a routine that we are using after the API update. From: Manu Abraham Signed-off-by: Manu Abraham diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c index 70b6ca0..42ed894 100644 --- a/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/drivers/media/dvb/dvb-core/dvb_frontend.c @@ -623,7 +623,7 @@ static int dvbfe_sanity_check(struct dvb_frontend *fe) (fepriv->fe_params.frequency > fepriv->fe_info.frequency_max)) return -EINVAL; - switch (fepriv->fe_params.delivery) { + switch (fepriv->delsys) { case DVBFE_DELSYS_DVBS: if (!(fepriv->fe_params.delsys.dvbs.modulation & fepriv->fe_info.delsys.dvbs.modulation)) --------------020205060200090200050806--