From patchwork Fri May 23 11:50:14 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Bolle X-Patchwork-Id: 4231871 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id A9AE9BF90B for ; Fri, 23 May 2014 11:55:00 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E37CD2034B for ; Fri, 23 May 2014 11:54:59 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 0DB772022A for ; Fri, 23 May 2014 11:54:59 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Wnnzm-0000bN-Rd; Fri, 23 May 2014 11:50:42 +0000 Received: from cpsmtpb-ews08.kpnxchange.com ([213.75.39.13]) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Wnnzi-0000Zu-HQ for linux-arm-kernel@lists.infradead.org; Fri, 23 May 2014 11:50:40 +0000 Received: from cpsps-ews27.kpnxchange.com ([10.94.84.193]) by cpsmtpb-ews08.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Fri, 23 May 2014 13:50:14 +0200 Received: from CPSMTPM-TLF104.kpnxchange.com ([195.121.3.7]) by cpsps-ews27.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Fri, 23 May 2014 13:50:14 +0200 Received: from [192.168.10.106] ([195.240.213.44]) by CPSMTPM-TLF104.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Fri, 23 May 2014 13:50:14 +0200 Message-ID: <1400845814.31526.29.camel@x220> Subject: [PATCH v2] ARM: at91: #if 0 out ISI code for AT91SAM9263 From: Paul Bolle To: Andrew Victor , Nicolas Ferre , Jean-Christophe Plagniol-Villard , Russell King Date: Fri, 23 May 2014 13:50:14 +0200 In-Reply-To: References: <1400142868.20469.12.camel@x220> X-Mailer: Evolution 3.10.4 (3.10.4-2.fc20) Mime-Version: 1.0 X-OriginalArrivalTime: 23 May 2014 11:50:14.0265 (UTC) FILETIME=[28B00E90:01CF767D] X-RcptDomain: lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140523_045038_902285_A59A787C X-CRM114-Status: GOOD ( 11.05 ) X-Spam-Score: 0.0 (/) Cc: Josh Wu , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP In v2.6.25 code was added for an Image Sensor Interface (ISI) for AT91SAM9263. That code depended on the Kconfig macro CONFIG_VIDEO_AT91_ISI and its MODULE variant. The related Kconfig symbol has never been added to the tree. The net effect of this was that at91_add_device_isi() was a NOP. No one noticed because no callers of that function were added to the tree at that time. The first caller of a function with that name was added in v3.4. But that caller apparently only called the function defined for AT91SAM9G45. (that function was also added in v3.4). So even then AT91SAM9263's NOP version of at91_add_device_isi() remained unused. This means that the ISI code for AT91SAM9263 could be removed. But, since it can be useful for future reference, let's "#if 0" it instead. Signed-off-by: Paul Bolle --- v2: Jean-Christophe would like to keep the information currently hidden behind "#if defined(CONFIG_VIDEO_AT91_ISI) [...]". I'd like the reference to that Kconfig macro dropped. Using "#if 0" will do both, so that makes for a nice compromise, I'd say. Josh verified that this definition of at91_add_device_isi() never will be called. Thanks! Still untested! arch/arm/mach-at91/at91sam9263_devices.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/arch/arm/mach-at91/at91sam9263_devices.c b/arch/arm/mach-at91/at91sam9263_devices.c index 43d53d6156dd..30af3048ade5 100644 --- a/arch/arm/mach-at91/at91sam9263_devices.c +++ b/arch/arm/mach-at91/at91sam9263_devices.c @@ -900,8 +900,7 @@ void __init at91_add_device_lcdc(struct atmel_lcdfb_pdata *data) {} * Image Sensor Interface * -------------------------------------------------------------------- */ -#if defined(CONFIG_VIDEO_AT91_ISI) || defined(CONFIG_VIDEO_AT91_ISI_MODULE) - +#if 0 /* keep for future reference */ struct resource isi_resources[] = { [0] = { .start = AT91SAM9263_BASE_ISI, @@ -947,9 +946,6 @@ void __init at91_add_device_isi(struct isi_platform_data *data, /* TODO: register the PCK for ISI_MCK and set its parent */ } } -#else -void __init at91_add_device_isi(struct isi_platform_data *data, - bool use_pck_as_mck) {} #endif