linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 38/45] arch/powerpc: remove duplicate includes
@ 2017-12-16 11:32 Pravin Shedge
  2017-12-19 11:01 ` Michael Ellerman
  0 siblings, 1 reply; 2+ messages in thread
From: Pravin Shedge @ 2017-12-16 11:32 UTC (permalink / raw)
  To: linuxppc-dev, mahesh, benh, paulus, mpe, mingo, fweisbec,
	john.stultz, ivan, tglx, mhiramat, naveen.n.rao, shailendras,
	keescook, anju, mcgrof, bsingharora, linux-kernel
  Cc: pravin.shedge4linux

These duplicate includes have been found with scripts/checkincludes.pl but
they have been removed manually to avoid removing false positives.

Signed-off-by: Pravin Shedge <pravin.shedge4linux@gmail.com>
---
 arch/powerpc/kernel/time.c               | 2 --
 arch/powerpc/lib/code-patching.c         | 1 -
 arch/powerpc/mm/numa.c                   | 1 -
 arch/powerpc/platforms/powernv/npu-dma.c | 1 -
 arch/powerpc/platforms/powernv/opal.c    | 1 -
 5 files changed, 6 deletions(-)

diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c
index fe6f3a2..64d0b80 100644
--- a/arch/powerpc/kernel/time.c
+++ b/arch/powerpc/kernel/time.c
@@ -57,7 +57,6 @@
 #include <linux/irq_work.h>
 #include <linux/clk-provider.h>
 #include <linux/suspend.h>
-#include <linux/rtc.h>
 #include <linux/sched/cputime.h>
 #include <linux/processor.h>
 #include <asm/trace.h>
@@ -78,7 +77,6 @@
 
 /* powerpc clocksource/clockevent code */
 
-#include <linux/clockchips.h>
 #include <linux/timekeeper_internal.h>
 
 static u64 rtc_read(struct clocksource *);
diff --git a/arch/powerpc/lib/code-patching.c b/arch/powerpc/lib/code-patching.c
index d469224..5f7e5ed 100644
--- a/arch/powerpc/lib/code-patching.c
+++ b/arch/powerpc/lib/code-patching.c
@@ -15,7 +15,6 @@
 #include <linux/cpuhotplug.h>
 #include <linux/slab.h>
 #include <linux/uaccess.h>
-#include <linux/kprobes.h>
 
 #include <asm/pgtable.h>
 #include <asm/tlbflush.h>
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c
index adb6364f..fa4b3af 100644
--- a/arch/powerpc/mm/numa.c
+++ b/arch/powerpc/mm/numa.c
@@ -33,7 +33,6 @@
 #include <asm/sparsemem.h>
 #include <asm/prom.h>
 #include <asm/smp.h>
-#include <asm/cputhreads.h>
 #include <asm/topology.h>
 #include <asm/firmware.h>
 #include <asm/paca.h>
diff --git a/arch/powerpc/platforms/powernv/npu-dma.c b/arch/powerpc/platforms/powernv/npu-dma.c
index f6cbc1a..e35b4fc 100644
--- a/arch/powerpc/platforms/powernv/npu-dma.c
+++ b/arch/powerpc/platforms/powernv/npu-dma.c
@@ -26,7 +26,6 @@
 #include <asm/iommu.h>
 #include <asm/pnv-pci.h>
 #include <asm/msi_bitmap.h>
-#include <asm/opal.h>
 
 #include "powernv.h"
 #include "pci.h"
diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
index 041ddbd..e00c1c6 100644
--- a/arch/powerpc/platforms/powernv/opal.c
+++ b/arch/powerpc/platforms/powernv/opal.c
@@ -26,7 +26,6 @@
 #include <linux/memblock.h>
 #include <linux/kthread.h>
 #include <linux/freezer.h>
-#include <linux/printk.h>
 #include <linux/kmsg_dump.h>
 #include <linux/console.h>
 #include <linux/sched/debug.h>
-- 
2.7.4

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

* Re: [PATCH 38/45] arch/powerpc: remove duplicate includes
  2017-12-16 11:32 [PATCH 38/45] arch/powerpc: remove duplicate includes Pravin Shedge
@ 2017-12-19 11:01 ` Michael Ellerman
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Ellerman @ 2017-12-19 11:01 UTC (permalink / raw)
  To: Pravin Shedge, linuxppc-dev, mahesh, benh, paulus, mingo,
	fweisbec, john.stultz, ivan, tglx, mhiramat, naveen.n.rao,
	shailendras, keescook, anju, mcgrof, bsingharora, linux-kernel
  Cc: pravin.shedge4linux

Pravin Shedge <pravin.shedge4linux@gmail.com> writes:

> These duplicate includes have been found with scripts/checkincludes.pl but
> they have been removed manually to avoid removing false positives.
>
> Signed-off-by: Pravin Shedge <pravin.shedge4linux@gmail.com>
> ---
>  arch/powerpc/kernel/time.c               | 2 --
>  arch/powerpc/lib/code-patching.c         | 1 -
>  arch/powerpc/mm/numa.c                   | 1 -
>  arch/powerpc/platforms/powernv/npu-dma.c | 1 -
>  arch/powerpc/platforms/powernv/opal.c    | 1 -
>  5 files changed, 6 deletions(-)

Do you want me to merge this, or is it going via some other tree?

If the latter:

  Acked-by: Michael Ellerman <mpe@ellerman.id.au>

cheers

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

end of thread, other threads:[~2017-12-19 11:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-16 11:32 [PATCH 38/45] arch/powerpc: remove duplicate includes Pravin Shedge
2017-12-19 11:01 ` Michael Ellerman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).