All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest
@ 2021-06-04 18:50 Andy Shevchenko
  2021-06-04 22:06 ` Linus Walleij
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Andy Shevchenko @ 2021-06-04 18:50 UTC (permalink / raw)
  To: Andy Shevchenko, Serge Semin, linux-gpio, linux-kernel
  Cc: Hoan Tran, Serge Semin, Linus Walleij, Bartosz Golaszewski,
	kernel test robot

Drop unused headers and drop the rest.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/gpio/gpio-dwapb.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/gpio/gpio-dwapb.c b/drivers/gpio/gpio-dwapb.c
index 7d61f5821e32..3eb13d6d31ef 100644
--- a/drivers/gpio/gpio-dwapb.c
+++ b/drivers/gpio/gpio-dwapb.c
@@ -13,17 +13,15 @@
 #include <linux/io.h>
 #include <linux/ioport.h>
 #include <linux/irq.h>
+#include <linux/mod_devicetable.h>
 #include <linux/module.h>
 #include <linux/of.h>
-#include <linux/of_address.h>
-#include <linux/of_device.h>
-#include <linux/of_irq.h>
+#include <linux/platform_data/gpio-dwapb.h>
 #include <linux/platform_device.h>
 #include <linux/property.h>
 #include <linux/reset.h>
-#include <linux/spinlock.h>
-#include <linux/platform_data/gpio-dwapb.h>
 #include <linux/slab.h>
+#include <linux/spinlock.h>
 
 #include "gpiolib.h"
 #include "gpiolib-acpi.h"
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest
  2021-06-04 18:50 [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest Andy Shevchenko
@ 2021-06-04 22:06 ` Linus Walleij
  2021-06-05 17:53 ` Serge Semin
  2021-06-07 13:36 ` Bartosz Golaszewski
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2021-06-04 22:06 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Serge Semin, open list:GPIO SUBSYSTEM, linux-kernel, Hoan Tran,
	Serge Semin, Bartosz Golaszewski, kernel test robot

On Fri, Jun 4, 2021 at 8:49 PM Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:

> Drop unused headers and drop the rest.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest
  2021-06-04 18:50 [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest Andy Shevchenko
  2021-06-04 22:06 ` Linus Walleij
@ 2021-06-05 17:53 ` Serge Semin
  2021-06-07 13:36 ` Bartosz Golaszewski
  2 siblings, 0 replies; 4+ messages in thread
From: Serge Semin @ 2021-06-05 17:53 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Serge Semin, linux-gpio, linux-kernel, Hoan Tran, Linus Walleij,
	Bartosz Golaszewski, kernel test robot

On Fri, Jun 04, 2021 at 09:50:13PM +0300, Andy Shevchenko wrote:
> Drop unused headers and drop the rest.

Thanks for cleanup.
Acked-by: Serge Semin <fancer.lancer@gmail.com>
Tested-by: Serge Semin <fancer.lancer@gmail.com>

-Sergey

> 
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  drivers/gpio/gpio-dwapb.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpio/gpio-dwapb.c b/drivers/gpio/gpio-dwapb.c
> index 7d61f5821e32..3eb13d6d31ef 100644
> --- a/drivers/gpio/gpio-dwapb.c
> +++ b/drivers/gpio/gpio-dwapb.c
> @@ -13,17 +13,15 @@
>  #include <linux/io.h>
>  #include <linux/ioport.h>
>  #include <linux/irq.h>
> +#include <linux/mod_devicetable.h>
>  #include <linux/module.h>
>  #include <linux/of.h>
> -#include <linux/of_address.h>
> -#include <linux/of_device.h>
> -#include <linux/of_irq.h>
> +#include <linux/platform_data/gpio-dwapb.h>
>  #include <linux/platform_device.h>
>  #include <linux/property.h>
>  #include <linux/reset.h>
> -#include <linux/spinlock.h>
> -#include <linux/platform_data/gpio-dwapb.h>
>  #include <linux/slab.h>
> +#include <linux/spinlock.h>
>  
>  #include "gpiolib.h"
>  #include "gpiolib-acpi.h"
> -- 
> 2.30.2
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest
  2021-06-04 18:50 [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest Andy Shevchenko
  2021-06-04 22:06 ` Linus Walleij
  2021-06-05 17:53 ` Serge Semin
@ 2021-06-07 13:36 ` Bartosz Golaszewski
  2 siblings, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2021-06-07 13:36 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Serge Semin, linux-gpio, LKML, Hoan Tran, Serge Semin,
	Linus Walleij, kernel test robot

On Fri, Jun 4, 2021 at 8:49 PM Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> Drop unused headers and drop the rest.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---

Applied, thanks!

Bart

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-07 13:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-04 18:50 [PATCH v1 1/1] gpio-dwapb: Drop unused headers and sort the rest Andy Shevchenko
2021-06-04 22:06 ` Linus Walleij
2021-06-05 17:53 ` Serge Semin
2021-06-07 13:36 ` Bartosz Golaszewski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.