2023-12-18 07:16:40

by Wang Jinchao

[permalink] [raw]
Subject: [PATCH v2] gpiolib: cleanup for duplicated including

Remove second `#include <linux/err.h>`.
Remove `#include <asm/errno.h>`.
As they are guaranteed by the global `err.h`.

Signed-off-by: Wang Jinchao <[email protected]>
---
V2:
Revise the comment per Andy's suggestion.
V1: https://lore.kernel.org/all/[email protected]/

include/linux/gpio/driver.h | 3 ---
1 file changed, 3 deletions(-)

diff --git a/include/linux/gpio/driver.h b/include/linux/gpio/driver.h
index 0aed62f0c633..df6857e579a1 100644
--- a/include/linux/gpio/driver.h
+++ b/include/linux/gpio/driver.h
@@ -701,7 +701,6 @@ int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
#else

#include <asm/bug.h>
-#include <asm/errno.h>

static inline int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
struct irq_domain *domain)
@@ -789,8 +788,6 @@ int gpio_device_get_base(struct gpio_device *gdev);

#else /* CONFIG_GPIOLIB */

-#include <linux/err.h>
-
#include <asm/bug.h>

static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
--
2.40.0



2023-12-18 08:55:36

by Bartosz Golaszewski

[permalink] [raw]
Subject: Re: [PATCH v2] gpiolib: cleanup for duplicated including

On Mon, Dec 18, 2023 at 8:16 AM Wang Jinchao <[email protected]> wrote:
>
> Remove second `#include <linux/err.h>`.
> Remove `#include <asm/errno.h>`.
> As they are guaranteed by the global `err.h`.
>
> Signed-off-by: Wang Jinchao <[email protected]>
> ---
> V2:
> Revise the comment per Andy's suggestion.
> V1: https://lore.kernel.org/all/[email protected]/
>
> include/linux/gpio/driver.h | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/include/linux/gpio/driver.h b/include/linux/gpio/driver.h
> index 0aed62f0c633..df6857e579a1 100644
> --- a/include/linux/gpio/driver.h
> +++ b/include/linux/gpio/driver.h
> @@ -701,7 +701,6 @@ int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
> #else
>
> #include <asm/bug.h>
> -#include <asm/errno.h>
>
> static inline int gpiochip_irqchip_add_domain(struct gpio_chip *gc,
> struct irq_domain *domain)
> @@ -789,8 +788,6 @@ int gpio_device_get_base(struct gpio_device *gdev);
>
> #else /* CONFIG_GPIOLIB */
>
> -#include <linux/err.h>
> -
> #include <asm/bug.h>
>
> static inline struct gpio_chip *gpiod_to_chip(const struct gpio_desc *desc)
> --
> 2.40.0
>

Applied, thanks!

Bart