From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932898AbdHVNCd (ORCPT ); Tue, 22 Aug 2017 09:02:33 -0400 Received: from mail-oi0-f43.google.com ([209.85.218.43]:33699 "EHLO mail-oi0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932808AbdHVNCa (ORCPT ); Tue, 22 Aug 2017 09:02:30 -0400 MIME-Version: 1.0 In-Reply-To: <68cd52a7-ce87-a507-f02d-ccb99634b465@xilinx.com> References: <68cd52a7-ce87-a507-f02d-ccb99634b465@xilinx.com> From: Linus Walleij Date: Tue, 22 Aug 2017 15:02:29 +0200 Message-ID: Subject: Re: [PATCH 3/8] gpio: zynq: Shift zynq_gpio_init() to subsys_initcall level To: Michal Simek Cc: "linux-kernel@vger.kernel.org" , "monstr@monstr.eu" , Nava kishore Manne , =?UTF-8?Q?S=C3=B6ren_Brinkmann?= , Steffen Trumtrar , Peter Crosthwaite , "linux-gpio@vger.kernel.org" , Rob Herring , Josh Cartwright , "linux-arm-kernel@lists.infradead.org" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Aug 14, 2017 at 4:15 PM, Michal Simek wrote: >> Can't you just move it all the way to device_initcall and >> simply use the standard module init macros? >> builtin_platform_driver(), module_platform_driver()? > > When I grep the kernel I see this > > [linux](master)$ git grep "^core_initcall" drivers/gpio/ | wc -l > 1 > [linux](master)$ git grep "^postcore_initcall" drivers/gpio/ | wc -l > 12 > [linux](master)$ git grep "^arch_initcall" drivers/gpio/ | wc -l > 2 > [linux](master)$ git grep "^subsys_initcall" drivers/gpio/ | wc -l > 33 > [linux](master)$ git grep "^device_initcall" drivers/gpio/ | wc -l > 4 > > > [linux](master)$ git grep "^core_initcall" drivers/pinctrl/ | wc -l > 6 > [linux](master)$ git grep "^postcore_initcall" drivers/pinctrl/ | wc -l > 7 > [linux](master)$ git grep "^arch_initcall" drivers/pinctrl/ | wc -l > 62 > [linux](master)$ git grep "^subsys_initcall" drivers/pinctrl/ | wc -l > 12 > [linux](master)$ git grep "^device_initcall" drivers/pinctrl/ | wc -l > 0 > > Majority of gpio drivers are in subsys_initcall and pinctrl in > arch_initcall. The majority is likely wrong, we don't vote about what is the best code quality luckily :D You do not see a lot of device_initicall because in the majority of cases these come implicitly from module_platform_driver(), builtin_platform_driver_probe() or builtin_platform_driver() see include/linux/platform_device.h > It doesn't mean that I have strong opinion about doing > this change. I have also read internal tracking system and it is not > fully clear if this is fixing any issue rather than removing on > deferring probe message. I think you can make it into module_platform_driver() please try that approach. Yours, Linus Walleij