From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752089AbcFGCzO (ORCPT ); Mon, 6 Jun 2016 22:55:14 -0400 Received: from mail-bl2nam02on0058.outbound.protection.outlook.com ([104.47.38.58]:35872 "EHLO NAM02-BL2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750974AbcFGCzM (ORCPT ); Mon, 6 Jun 2016 22:55:12 -0400 Authentication-Results: spf=pass (sender IP is 149.199.60.100) smtp.mailfrom=xilinx.com; vger.kernel.org; dkim=none (message not signed) header.d=none;vger.kernel.org; dmarc=bestguesspass action=none header.from=xilinx.com; Date: Mon, 6 Jun 2016 19:54:59 -0700 From: =?utf-8?B?U8O2cmVu?= Brinkmann To: Paul Gortmaker CC: , Linus Walleij , Michal Simek , Subject: Re: [PATCH 7/9] pinctrl: zynq: make it explicitly non-modular Message-ID: <20160607025459.GV3766@xsjsorenbubuntu> References: <1465267388-17884-1-git-send-email-paul.gortmaker@windriver.com> <1465267388-17884-8-git-send-email-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1465267388-17884-8-git-send-email-paul.gortmaker@windriver.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-RCIS-Action: ALLOW X-TM-AS-Product-Ver: IMSS-7.1.0.1224-8.0.0.1202-22374.005 X-TM-AS-User-Approved-Sender: Yes;Yes X-EOPAttributedMessage: 0 X-Forefront-Antispam-Report: CIP:149.199.60.100;IPV:NLI;CTRY:US;EFV:NLI;SFV:NSPM;SFS:(10009020)(6009001)(2980300002)(438002)(24454002)(189002)(199003)(377424004)(87936001)(85202003)(6806005)(1076002)(4001350100001)(106466001)(9686002)(23676002)(77096005)(5008740100001)(11100500001)(36386004)(57986006)(63266004)(76506005)(33716001)(9786002)(4326007)(586003)(81156014)(8676002)(33656002)(92566002)(54356999)(83506001)(2950100001)(50986999)(2906002)(76176999)(19580405001)(19580395003)(81166006)(8936002)(86362001)(50466002)(2870700001)(85182001)(110136002)(47776003)(189998001)(107986001)(5001870100001);DIR:OUT;SFP:1101;SCL:1;SRVR:BL2NAM02HT096;H:xsj-pvapsmtpgw02;FPR:;SPF:Pass;PTR:unknown-60-100.xilinx.com,xapps1.xilinx.com;MX:1;A:1;LANG:en; X-MS-Office365-Filtering-Correlation-Id: a066cdc7-432f-4be4-9b26-08d38e7f2352 X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:(8251501002);SRVR:BL2NAM02HT096; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:(9452136761055)(192813158149592); X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004)(2401047)(8121501046)(13017025)(5005006)(13015025)(13023025)(13024025)(13018025)(3002001)(10201501046)(6055026);SRVR:BL2NAM02HT096;BCL:0;PCL:0;RULEID:;SRVR:BL2NAM02HT096; X-Forefront-PRVS: 09669DB681 X-OriginatorOrg: xilinx.com X-MS-Exchange-CrossTenant-OriginalArrivalTime: 07 Jun 2016 02:55:09.2104 (UTC) X-MS-Exchange-CrossTenant-Id: 657af505-d5df-48d0-8300-c31994686c5c X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=657af505-d5df-48d0-8300-c31994686c5c;Ip=[149.199.60.100];Helo=[xsj-pvapsmtpgw02] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: BL2NAM02HT096 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2016-06-06 at 22:43:06 -0400, Paul Gortmaker wrote: > The Kconfig currently controlling compilation of this code is: > > config PINCTRL_ZYNQ > bool "Pinctrl driver for Xilinx Zynq" > > ...meaning that it currently is not being built as a module by anyone. > > Lets remove the modular code that is essentially orphaned, so that > when reading the driver there is no doubt it is builtin-only. > > Since module_platform_driver() uses the same init level priority as > builtin_platform_driver() the init ordering remains unchanged with > this commit. > > Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code. > > We also delete the MODULE_LICENSE tag etc. since all that information > is already contained at the top of the file in the comments. > > Cc: Linus Walleij > Cc: Michal Simek > Cc: "Sören Brinkmann" > Cc: linux-gpio@vger.kernel.org > Signed-off-by: Paul Gortmaker Acked-by: "Sören Brinkmann" Sören