From patchwork Sat Apr 5 11:20:02 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Bolle X-Patchwork-Id: 23414 X-Patchwork-Delegate: mkrufky@linuxtv.org Received: from mail.tu-berlin.de ([130.149.7.33]) by www.linuxtv.org with esmtp (Exim 4.72) (envelope-from ) id 1WWOt7-0008KX-6Q; Sat, 05 Apr 2014 13:35:53 +0200 X-tubIT-Incoming-IP: 209.132.180.67 Received: from vger.kernel.org ([209.132.180.67]) by mail.tu-berlin.de (exim-4.72/mailfrontend-6) with esmtp id 1WWOt4-0004jk-58; Sat, 05 Apr 2014 13:35:52 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752277AbaDELfO (ORCPT + 1 other); Sat, 5 Apr 2014 07:35:14 -0400 Received: from cpsmtpb-ews05.kpnxchange.com ([213.75.39.8]:54919 "EHLO cpsmtpb-ews05.kpnxchange.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752215AbaDELfN (ORCPT ); Sat, 5 Apr 2014 07:35:13 -0400 X-Greylist: delayed 909 seconds by postgrey-1.27 at vger.kernel.org; Sat, 05 Apr 2014 07:35:13 EDT Received: from cpsps-ews30.kpnxchange.com ([10.94.84.196]) by cpsmtpb-ews05.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Sat, 5 Apr 2014 13:20:03 +0200 Received: from CPSMTPM-TLF103.kpnxchange.com ([195.121.3.6]) by cpsps-ews30.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Sat, 5 Apr 2014 13:20:02 +0200 Received: from [192.168.10.106] ([195.240.213.44]) by CPSMTPM-TLF103.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Sat, 5 Apr 2014 13:20:02 +0200 Message-ID: <1396696802.27142.15.camel@x220> Subject: [PATCH] [media] drx-j: use customise option correctly From: Paul Bolle To: Mauro Carvalho Chehab Cc: Devin Heitmueller , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Date: Sat, 05 Apr 2014 13:20:02 +0200 In-Reply-To: <20140403131143.69f324c7@samsung.com> References: <20140403131143.69f324c7@samsung.com> X-Mailer: Evolution 3.10.4 (3.10.4-2.fc20) Mime-Version: 1.0 X-OriginalArrivalTime: 05 Apr 2014 11:20:02.0876 (UTC) FILETIME=[FD3007C0:01CF50C0] X-RcptDomain: vger.kernel.org Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-PMX-Version: 6.0.0.2142326, Antispam-Engine: 2.7.2.2107409, Antispam-Data: 2014.4.5.112414 X-PMX-Spam: Gauge=IIIIIIIII, Probability=9%, Report=' MULTIPLE_RCPTS 0.1, HTML_00_01 0.05, HTML_00_10 0.05, MIME_LOWER_CASE 0.05, MSGID_ADDED_BY_MTA 0.05, BODYTEXTP_SIZE_3000_LESS 0, BODY_SIZE_1700_1799 0, BODY_SIZE_2000_LESS 0, BODY_SIZE_5000_LESS 0, BODY_SIZE_7000_LESS 0, CT_TEXT_PLAIN_UTF8_CAPS 0, INVALID_MSGID_NO_FQDN 0, URI_ENDS_IN_HTML 0, __ANY_URI 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_FROM 0, __HAS_MSGID 0, __HAS_XOAT 0, __HAS_X_MAILER 0, __HAS_X_MAILING_LIST 0, __IN_REP_TO 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __MULTIPLE_RCPTS_CC_X2 0, __SANE_MSGID 0, __SUBJ_ALPHA_END 0, __SXL_FUR_ERROR_SERVFAIL , __SXL_RIP_ERROR_SERVFAIL , __SXL_SIG_ERROR_SERVFAIL , __SXL_URI_ERROR_SERVFAIL , __TO_MALFORMED_2 0, __URI_NO_WWW 0, __URI_NS ' On Thu, 2014-04-03 at 13:11 -0300, Mauro Carvalho Chehab wrote: > Devin Heitmueller (3): > [...] > [media] drx-j: add a driver for Trident drx-j frontend This commit introduced a reference to DVB_FE_CUSTOMISE. But that Kconfig symbol was removed in v3.7. It seems that the intent was to use MEDIA_SUBDRV_AUTOSELECT here. So the following (untested!) patch makes the Kconfig entry for "Micronas DRX-J demodulator" use the current symbol. It is basically a copy of d65fcbb0007b "([media] ts2020: use customise option correctly"). --------- >8 --------- From: Paul Bolle The Kconfig entry for "Micronas DRX-J demodulator" defaults to modular if DVB_FE_CUSTOMISE is set. But that Kconfig symbol was replaced with MEDIA_SUBDRV_AUTOSELECT as of v3.7. So use the new symbol. And negate the logic, because MEDIA_SUBDRV_AUTOSELECT's logic is the opposite of the former logic. Signed-off-by: Paul Bolle --- drivers/media/dvb-frontends/drx39xyj/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/dvb-frontends/drx39xyj/Kconfig b/drivers/media/dvb-frontends/drx39xyj/Kconfig index 15628eb5cf0c..6c2ccb6a506b 100644 --- a/drivers/media/dvb-frontends/drx39xyj/Kconfig +++ b/drivers/media/dvb-frontends/drx39xyj/Kconfig @@ -1,7 +1,7 @@ config DVB_DRX39XYJ tristate "Micronas DRX-J demodulator" depends on DVB_CORE && I2C - default m if DVB_FE_CUSTOMISE + default m if !MEDIA_SUBDRV_AUTOSELECT help An ATSC 8VSB and QAM64/256 tuner module. Say Y when you want to support this frontend.