From: Andy Shevchenko <andriy.shevchenko@linux•intel.com>
To: Andy Shevchenko <andriy.shevchenko@linux•intel.com>,
Arnd Bergmann <arnd@arndb•de>,
Linus Walleij <linus.walleij@linaro•org>,
Bartosz Golaszewski <bartosz.golaszewski@linaro•org>,
Tony Lindgren <tony@atomide•com>,
Thomas Gleixner <tglx@linutronix•de>,
Krzysztof Kozlowski <krzysztof.kozlowski@linaro•org>,
Geert Uytterhoeven <geert@linux-m68k•org>,
Michael Ellerman <mpe@ellerman•id.au>,
Christophe Leroy <christophe.leroy@csgroup•eu>,
Vincenzo Palazzo <vincenzopalazzodev@gmail•com>,
Devarsh Thakkar <devarsht@ti•com>,
Michael Walle <michael@walle•cc>,
Dmitry Torokhov <dmitry.torokhov@gmail•com>,
Dipen Patel <dipenp@nvidia•com>,
Thierry Reding <treding@nvidia•com>,
Stefan Schmidt <stefan@datenfreihafen•org>,
Miquel Raynal <miquel.raynal@bootlin•com>,
Lee Jones <lee@kernel•org>,
linux-gpio@vger•kernel.org, linux-doc@vger•kernel.org,
linux-kernel@vger•kernel.org,
linux-doc-tw-discuss@lists•sourceforge.net,
linux-arm-kernel@lists•infradead.org, linux-omap@vger•kernel.org,
linux-samsung-soc@vger•kernel.org,
linux-m68k@lists•linux-m68k.org, linuxppc-dev@lists•ozlabs.org,
linux-sh@vger•kernel.org, linux-acpi@vger•kernel.org,
linux-tegra@vger•kernel.org, linux-input@vger•kernel.org,
linux-media@vger•kernel.org, linux-wpan@vger•kernel.org,
netdev@vger•kernel.org, linux-wireless@vger•kernel.org,
brcm80211-dev-list.pdl@broadcom•com,
SHA-cyfmac-dev-list@infineon•com, linux-arch@vger•kernel.org,
devicetree@vger•kernel.org
Cc: Bartosz Golaszewski <brgl@bgdev•pl>,
Jonathan Corbet <corbet@lwn•net>, Alex Shi <alexs@kernel•org>,
Yanteng Si <siyanteng@loongson•cn>, Hu Haowen <src.res@email•cn>,
Russell King <linux@armlinux•org.uk>,
Aaro Koskinen <aaro.koskinen@iki•fi>,
Janusz Krzysztofik <jmkrzyszt@gmail•com>,
Andrew Lunn <andrew@lunn•ch>,
Sebastian Hesselbarth <sebastian.hesselbarth@gmail•com>,
Gregory Clement <gregory.clement@bootlin•com>,
Alim Akhtar <alim.akhtar@samsung•com>,
Nicholas Piggin <npiggin@gmail•com>,
Yoshinori Sato <ysato@users•sourceforge.jp>,
Rich Felker <dalias@libc•org>,
Mun Yew Tham <mun.yew.tham@intel•com>, Keerthy <j-keerthy@ti•com>,
Mika Westerberg <mika.westerberg@linux•intel.com>,
Thierry Reding <thierry.reding@gmail•com>,
Jonathan Hunter <jonathanh@nvidia•com>,
Mauro Carvalho Chehab <mchehab@kernel•org>,
Alexander Aring <alex.aring@gmail•com>,
"David S. Miller" <davem@davemloft•net>,
Eric Dumazet <edumazet@google•com>,
Jakub Kicinski <kuba@kernel•org>, Paolo Abeni <pabeni@redhat•com>,
Arend van Spriel <aspriel@gmail•com>,
Franky Lin <franky.lin@broadcom•com>,
Hante Meuleman <hante.meuleman@broadcom•com>,
Kalle Valo <kvalo@kernel•org>, Qiang Zhao <qiang.zhao@nxp•com>,
Li Yang <leoyang.li@nxp•com>, Rob Herring <robh+dt@kernel•org>,
Frank Rowand <frowand.list@gmail•com>
Subject: [PATCH v4 10/18] gpiolib: split linux/gpio/driver.h out of linux/gpio.h
Date: Wed, 8 Feb 2023 19:33:35 +0200 [thread overview]
Message-ID: <20230208173343.37582-11-andriy.shevchenko@linux.intel.com> (raw)
In-Reply-To: <20230208173343.37582-1-andriy.shevchenko@linux.intel.com>
From: Arnd Bergmann <arnd@arndb•de>
Almost all gpio drivers include linux/gpio/driver.h, and other
files should not rely on includes from this header.
Remove the indirect include from here and include the correct
headers directly from where they are used.
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux•intel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb•de>
Reviewed-by: Linus Walleij <linus.walleij@linaro•org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux•intel.com>
Acked-by: Lee Jones <lee@kernel•org>
---
arch/arm/mach-omap1/irq.c | 1 +
arch/arm/mach-orion5x/board-rd88f5182.c | 1 +
arch/arm/mach-sa1100/assabet.c | 1 +
drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.c | 1 +
include/linux/mfd/ucb1x00.h | 1 +
5 files changed, 5 insertions(+)
diff --git a/arch/arm/mach-omap1/irq.c b/arch/arm/mach-omap1/irq.c
index 9ccc784fd614..bfc7ab010ae2 100644
--- a/arch/arm/mach-omap1/irq.c
+++ b/arch/arm/mach-omap1/irq.c
@@ -41,6 +41,7 @@
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/io.h>
+#include <linux/irqdomain.h>
#include <asm/irq.h>
#include <asm/exception.h>
diff --git a/arch/arm/mach-orion5x/board-rd88f5182.c b/arch/arm/mach-orion5x/board-rd88f5182.c
index 596601367989..1c14e49a90a6 100644
--- a/arch/arm/mach-orion5x/board-rd88f5182.c
+++ b/arch/arm/mach-orion5x/board-rd88f5182.c
@@ -9,6 +9,7 @@
#include <linux/gpio.h>
#include <linux/kernel.h>
#include <linux/init.h>
+#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/pci.h>
#include <linux/irq.h>
diff --git a/arch/arm/mach-sa1100/assabet.c b/arch/arm/mach-sa1100/assabet.c
index 2eba112f2ad8..d000c678b439 100644
--- a/arch/arm/mach-sa1100/assabet.c
+++ b/arch/arm/mach-sa1100/assabet.c
@@ -10,6 +10,7 @@
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/errno.h>
+#include <linux/gpio/driver.h>
#include <linux/gpio/gpio-reg.h>
#include <linux/gpio/machine.h>
#include <linux/gpio_keys.h>
diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.c b/drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.c
index 9540a05247c2..89c8829528c2 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.c
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0
#include <net/mac80211.h>
#include <linux/bcma/bcma_driver_chipcommon.h>
+#include <linux/gpio.h>
#include <linux/gpio/driver.h>
#include <linux/gpio/machine.h>
#include <linux/gpio/consumer.h>
diff --git a/include/linux/mfd/ucb1x00.h b/include/linux/mfd/ucb1x00.h
index 43bcf35afe27..ede237384723 100644
--- a/include/linux/mfd/ucb1x00.h
+++ b/include/linux/mfd/ucb1x00.h
@@ -10,6 +10,7 @@
#include <linux/device.h>
#include <linux/mfd/mcp.h>
#include <linux/gpio.h>
+#include <linux/gpio/driver.h>
#include <linux/mutex.h>
#define UCB_IO_DATA 0x00
--
2.39.1
next prev parent reply other threads:[~2023-02-08 17:34 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-08 17:33 [PATCH v4 00/18] gpiolib cleanups Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 01/18] ARM: orion/gpio: Use the right include Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 02/18] ARM: s3c24xx: " Andy Shevchenko
2023-02-08 17:39 ` Krzysztof Kozlowski
2023-02-08 17:43 ` Andy Shevchenko
2023-02-09 10:45 ` Linus Walleij
2023-02-08 18:02 ` Krzysztof Kozlowski
2023-02-08 17:33 ` [PATCH v4 03/18] hte: tegra-194: Use proper includes Andy Shevchenko
2023-02-09 11:29 ` Dipen Patel
2023-02-08 17:33 ` [PATCH v4 04/18] gpiolib: Make the legacy <linux/gpio.h> consumer-only Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 05/18] gpiolib: remove empty asm/gpio.h files Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 06/18] gpiolib: coldfire: remove custom asm/gpio.h Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 07/18] gpiolib: remove asm-generic/gpio.h Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 08/18] gpiolib: remove gpio_set_debounce() Andy Shevchenko
2023-02-10 0:30 ` Dmitry Torokhov
2023-02-08 17:33 ` [PATCH v4 09/18] gpiolib: remove legacy gpio_export() Andy Shevchenko
2023-02-08 17:33 ` Andy Shevchenko [this message]
2023-02-08 17:33 ` [PATCH v4 11/18] gpiolib: split of_mm_gpio_chip out of linux/of_gpio.h Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 12/18] gpio: aggregator: Add missing header(s) Andy Shevchenko
2023-02-09 10:43 ` Linus Walleij
2023-02-08 17:33 ` [PATCH v4 13/18] gpio: reg: " Andy Shevchenko
2023-02-09 10:43 ` Linus Walleij
2023-02-08 17:33 ` [PATCH v4 14/18] gpio: regmap: " Andy Shevchenko
2023-02-09 10:41 ` Linus Walleij
2023-02-08 17:33 ` [PATCH v4 15/18] gpiolib: Drop unused forward declaration from driver.h Andy Shevchenko
2023-02-08 17:33 ` [PATCH v4 16/18] gpiolib: Deduplicate forward declarations in consumer.h Andy Shevchenko
2023-02-09 10:42 ` Linus Walleij
2023-02-08 17:33 ` [PATCH v4 17/18] gpiolib: Group " Andy Shevchenko
2023-02-09 10:42 ` Linus Walleij
2023-02-08 17:33 ` [PATCH v4 18/18] gpiolib: Clean up headers Andy Shevchenko
2023-02-09 10:44 ` Linus Walleij
2023-02-15 15:52 ` [PATCH v4 00/18] gpiolib cleanups Bartosz Golaszewski
2023-02-15 15:59 ` Andy Shevchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230208173343.37582-11-andriy.shevchenko@linux.intel.com \
--to=andriy.shevchenko@linux$(echo .)intel.com \
--cc=SHA-cyfmac-dev-list@infineon$(echo .)com \
--cc=aaro.koskinen@iki$(echo .)fi \
--cc=alex.aring@gmail$(echo .)com \
--cc=alexs@kernel$(echo .)org \
--cc=alim.akhtar@samsung$(echo .)com \
--cc=andrew@lunn$(echo .)ch \
--cc=arnd@arndb$(echo .)de \
--cc=aspriel@gmail$(echo .)com \
--cc=bartosz.golaszewski@linaro$(echo .)org \
--cc=brcm80211-dev-list.pdl@broadcom$(echo .)com \
--cc=brgl@bgdev$(echo .)pl \
--cc=christophe.leroy@csgroup$(echo .)eu \
--cc=corbet@lwn$(echo .)net \
--cc=dalias@libc$(echo .)org \
--cc=davem@davemloft$(echo .)net \
--cc=devarsht@ti$(echo .)com \
--cc=devicetree@vger$(echo .)kernel.org \
--cc=dipenp@nvidia$(echo .)com \
--cc=dmitry.torokhov@gmail$(echo .)com \
--cc=edumazet@google$(echo .)com \
--cc=franky.lin@broadcom$(echo .)com \
--cc=frowand.list@gmail$(echo .)com \
--cc=geert@linux-m68k$(echo .)org \
--cc=gregory.clement@bootlin$(echo .)com \
--cc=hante.meuleman@broadcom$(echo .)com \
--cc=j-keerthy@ti$(echo .)com \
--cc=jmkrzyszt@gmail$(echo .)com \
--cc=jonathanh@nvidia$(echo .)com \
--cc=krzysztof.kozlowski@linaro$(echo .)org \
--cc=kuba@kernel$(echo .)org \
--cc=kvalo@kernel$(echo .)org \
--cc=lee@kernel$(echo .)org \
--cc=leoyang.li@nxp$(echo .)com \
--cc=linus.walleij@linaro$(echo .)org \
--cc=linux-acpi@vger$(echo .)kernel.org \
--cc=linux-arch@vger$(echo .)kernel.org \
--cc=linux-arm-kernel@lists$(echo .)infradead.org \
--cc=linux-doc-tw-discuss@lists$(echo .)sourceforge.net \
--cc=linux-doc@vger$(echo .)kernel.org \
--cc=linux-gpio@vger$(echo .)kernel.org \
--cc=linux-input@vger$(echo .)kernel.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux-m68k@lists$(echo .)linux-m68k.org \
--cc=linux-media@vger$(echo .)kernel.org \
--cc=linux-omap@vger$(echo .)kernel.org \
--cc=linux-samsung-soc@vger$(echo .)kernel.org \
--cc=linux-sh@vger$(echo .)kernel.org \
--cc=linux-tegra@vger$(echo .)kernel.org \
--cc=linux-wireless@vger$(echo .)kernel.org \
--cc=linux-wpan@vger$(echo .)kernel.org \
--cc=linux@armlinux$(echo .)org.uk \
--cc=linuxppc-dev@lists$(echo .)ozlabs.org \
--cc=mchehab@kernel$(echo .)org \
--cc=michael@walle$(echo .)cc \
--cc=mika.westerberg@linux$(echo .)intel.com \
--cc=miquel.raynal@bootlin$(echo .)com \
--cc=mpe@ellerman$(echo .)id.au \
--cc=mun.yew.tham@intel$(echo .)com \
--cc=netdev@vger$(echo .)kernel.org \
--cc=npiggin@gmail$(echo .)com \
--cc=pabeni@redhat$(echo .)com \
--cc=qiang.zhao@nxp$(echo .)com \
--cc=robh+dt@kernel$(echo .)org \
--cc=sebastian.hesselbarth@gmail$(echo .)com \
--cc=siyanteng@loongson$(echo .)cn \
--cc=src.res@email$(echo .)cn \
--cc=stefan@datenfreihafen$(echo .)org \
--cc=tglx@linutronix$(echo .)de \
--cc=thierry.reding@gmail$(echo .)com \
--cc=tony@atomide$(echo .)com \
--cc=treding@nvidia$(echo .)com \
--cc=vincenzopalazzodev@gmail$(echo .)com \
--cc=ysato@users$(echo .)sourceforge.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox