[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAMRc=McaLTaBv6oL-NM2ULFMLU79mJ_Zu6_2=wG=fhxotL7Y=A@mail.gmail.com>
Date: Mon, 16 Jan 2023 10:01:02 +0100
From: Bartosz Golaszewski <brgl@...ev.pl>
To: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Cc: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>,
Moses Christopher Bollavarapu <mosescb.dev@...il.com>,
linux-gpio@...r.kernel.org, linux-kernel@...r.kernel.org,
Linus Walleij <linus.walleij@...aro.org>
Subject: Re: [PATCH v1 2/2] gpio: zevio: Use proper headers and drop OF_GPIO dependency
On Thu, Jan 12, 2023 at 5:39 PM Andy Shevchenko
<andriy.shevchenko@...ux.intel.com> wrote:
>
> The driver doesn't depend on the OF_GPIO to be compiled. Hence
> the proper header to use is mod_devicetable.h. Replace of*.h with
> the above mentioned and drop redundant dependency.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> ---
> drivers/gpio/Kconfig | 2 +-
> drivers/gpio/gpio-zevio.c | 7 ++++---
> 2 files changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 3b2078a654ce..a2f64f880163 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -751,7 +751,7 @@ config GPIO_XTENSA
>
> config GPIO_ZEVIO
> bool "LSI ZEVIO SoC memory mapped GPIOs"
> - depends on ARM && OF_GPIO
> + depends on ARM
> help
> Say yes here to support the GPIO controller in LSI ZEVIO SoCs.
>
> diff --git a/drivers/gpio/gpio-zevio.c b/drivers/gpio/gpio-zevio.c
> index c9f4c26cae3d..61e47456c33a 100644
> --- a/drivers/gpio/gpio-zevio.c
> +++ b/drivers/gpio/gpio-zevio.c
> @@ -5,13 +5,14 @@
> * Author: Fabian Vogt <fabian@...ter-vogt.de>
> */
>
> -#include <linux/spinlock.h>
> +#include <linux/bitops.h>
> #include <linux/errno.h>
> #include <linux/init.h>
> -#include <linux/bitops.h>
> #include <linux/io.h>
> -#include <linux/of_device.h>
> +#include <linux/mod_devicetable.h>
> #include <linux/slab.h>
> +#include <linux/spinlock.h>
> +
> #include <linux/gpio/driver.h>
>
> /*
> --
> 2.39.0
>
Applied, thanks!
Bart
Powered by blists - more mailing lists