All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/1] bus: bt1-apb: Remove duplicated header file inclusion
@ 2021-04-06  8:20 ` Zhen Lei
  0 siblings, 0 replies; 4+ messages in thread
From: Zhen Lei @ 2021-04-06  8:20 UTC (permalink / raw)
  To: Damien Le Moal, Arnd Bergmann, Linus Walleij, linux-riscv,
	linux-gpio, linux-kernel
  Cc: Zhen Lei

v1 --> v2:
Arrange all included header files in alphabetical order.


Zhen Lei (1):
  bus: bt1-apb: Remove duplicated header file inclusion

 drivers/bus/bt1-apb.c | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

-- 
1.8.3



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

* [PATCH v2 0/1] bus: bt1-apb: Remove duplicated header file inclusion
@ 2021-04-06  8:20 ` Zhen Lei
  0 siblings, 0 replies; 4+ messages in thread
From: Zhen Lei @ 2021-04-06  8:20 UTC (permalink / raw)
  To: Damien Le Moal, Arnd Bergmann, Linus Walleij, linux-riscv,
	linux-gpio, linux-kernel
  Cc: Zhen Lei

v1 --> v2:
Arrange all included header files in alphabetical order.


Zhen Lei (1):
  bus: bt1-apb: Remove duplicated header file inclusion

 drivers/bus/bt1-apb.c | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

-- 
1.8.3



_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* [PATCH v2 1/1] bus: bt1-apb: Remove duplicated header file inclusion
  2021-04-06  8:20 ` Zhen Lei
@ 2021-04-06  8:20   ` Zhen Lei
  -1 siblings, 0 replies; 4+ messages in thread
From: Zhen Lei @ 2021-04-06  8:20 UTC (permalink / raw)
  To: Damien Le Moal, Arnd Bergmann, Linus Walleij, linux-riscv,
	linux-gpio, linux-kernel
  Cc: Zhen Lei

Delete one of the header files <linux/clk.h> that are included twice, all
included header files are then rearranged alphabetically.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 drivers/bus/bt1-apb.c | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/drivers/bus/bt1-apb.c b/drivers/bus/bt1-apb.c
index b25ff941e7c7f52..f7d3d2851a6cc48 100644
--- a/drivers/bus/bt1-apb.c
+++ b/drivers/bus/bt1-apb.c
@@ -8,22 +8,21 @@
  * Baikal-T1 APB-bus driver
  */
 
-#include <linux/kernel.h>
-#include <linux/module.h>
-#include <linux/types.h>
-#include <linux/device.h>
 #include <linux/atomic.h>
-#include <linux/platform_device.h>
+#include <linux/clk.h>
+#include <linux/device.h>
 #include <linux/interrupt.h>
 #include <linux/io.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
 #include <linux/nmi.h>
 #include <linux/of.h>
+#include <linux/platform_device.h>
 #include <linux/regmap.h>
-#include <linux/clk.h>
 #include <linux/reset.h>
-#include <linux/time64.h>
-#include <linux/clk.h>
 #include <linux/sysfs.h>
+#include <linux/time64.h>
+#include <linux/types.h>
 
 #define APB_EHB_ISR			0x00
 #define APB_EHB_ISR_PENDING		BIT(0)
-- 
1.8.3



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

* [PATCH v2 1/1] bus: bt1-apb: Remove duplicated header file inclusion
@ 2021-04-06  8:20   ` Zhen Lei
  0 siblings, 0 replies; 4+ messages in thread
From: Zhen Lei @ 2021-04-06  8:20 UTC (permalink / raw)
  To: Damien Le Moal, Arnd Bergmann, Linus Walleij, linux-riscv,
	linux-gpio, linux-kernel
  Cc: Zhen Lei

Delete one of the header files <linux/clk.h> that are included twice, all
included header files are then rearranged alphabetically.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 drivers/bus/bt1-apb.c | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/drivers/bus/bt1-apb.c b/drivers/bus/bt1-apb.c
index b25ff941e7c7f52..f7d3d2851a6cc48 100644
--- a/drivers/bus/bt1-apb.c
+++ b/drivers/bus/bt1-apb.c
@@ -8,22 +8,21 @@
  * Baikal-T1 APB-bus driver
  */
 
-#include <linux/kernel.h>
-#include <linux/module.h>
-#include <linux/types.h>
-#include <linux/device.h>
 #include <linux/atomic.h>
-#include <linux/platform_device.h>
+#include <linux/clk.h>
+#include <linux/device.h>
 #include <linux/interrupt.h>
 #include <linux/io.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
 #include <linux/nmi.h>
 #include <linux/of.h>
+#include <linux/platform_device.h>
 #include <linux/regmap.h>
-#include <linux/clk.h>
 #include <linux/reset.h>
-#include <linux/time64.h>
-#include <linux/clk.h>
 #include <linux/sysfs.h>
+#include <linux/time64.h>
+#include <linux/types.h>
 
 #define APB_EHB_ISR			0x00
 #define APB_EHB_ISR_PENDING		BIT(0)
-- 
1.8.3



_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

end of thread, other threads:[~2021-04-06  8:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-06  8:20 [PATCH v2 0/1] bus: bt1-apb: Remove duplicated header file inclusion Zhen Lei
2021-04-06  8:20 ` Zhen Lei
2021-04-06  8:20 ` [PATCH v2 1/1] " Zhen Lei
2021-04-06  8:20   ` Zhen Lei

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.