Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753468AbdGDM7Q (ORCPT ); Tue, 4 Jul 2017 08:59:16 -0400 Received: from mail-yb0-f193.google.com ([209.85.213.193]:34074 "EHLO mail-yb0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752254AbdGDM7L (ORCPT ); Tue, 4 Jul 2017 08:59:11 -0400 Date: Tue, 4 Jul 2017 08:58:51 -0400 From: William Breathitt Gray To: Masahiro Yamada Cc: linux-gpio@vger.kernel.org, Grygorii Strashko , Linus Walleij , Andy Shevchenko , Ray Jui , =?utf-8?B?U8O2cmVu?= Brinkmann , David Cohen , Scott Branden , linux-acpi@vger.kernel.org, bcm-kernel-feedback-list@broadcom.com, Florian Fainelli , Thierry Reding , Jonathan Hunter , Alexander Shiyan , Michal Simek , Kevin Hilman , linux-tegra@vger.kernel.org, Joel Stanley , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Mika Westerberg , patches@opensource.cirrus.com, Alban Bedel , linux-kernel@vger.kernel.org, Santosh Shilimkar , Thor Thayer , Tien Hock Loh Subject: Re: [PATCH] gpio: drop unnecessary includes from include/linux/gpio/driver.h Message-ID: <20170704125851.GA20504@sophia> References: <1499140415-31677-1-git-send-email-yamada.masahiro@socionext.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1499140415-31677-1-git-send-email-yamada.masahiro@socionext.com> User-Agent: Mutt/1.8.3 (2017-05-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1235 Lines: 32 On Tue, Jul 04, 2017 at 12:53:34PM +0900, Masahiro Yamada wrote: >Some of include directives in include/linux/gpio/driver.h are >unneeded because the header does not need to know the content of >struct device, irq_chip, etc. Just declare they are structures. > >On the other hand, and >turned out to be necessary for irq_flow_handler_t and spinlock_t, >respectively. > >Each driver should include what it needs without relying on what is >implicitly included from . This will cut down >unnecessary header parsing. > >Signed-off-by: Masahiro Yamada >--- > > drivers/gpio/gpio-104-dio-48e.c | 1 + > drivers/gpio/gpio-104-idi-48.c | 1 + > drivers/gpio/gpio-104-idio-16.c | 1 + > drivers/gpio/gpio-pci-idio-16.c | 2 ++ > drivers/gpio/gpio-ws16c48.c | 1 + The changes to the above drivers look fine to me: Acked-by: William Breathitt Gray However, this patch as a whole does too many things; I'd like to see it split-up logically similar to how Andy Shevchenko suggested in his reply. That should allow ACKs by respective driver maintainers to be accounted more properly. William Breathitt Gray