Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1163096 > unrolled thread
| Started by | Will Deacon <will.deacon@arm.com> |
|---|---|
| First post | 2015-06-11 11:40 +0200 |
| Last post | 2015-06-11 11:40 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 1/1] arm/hw_breakpoint.c: Added #include <linux/kdebug.h> instead of<asm/kdebug.h> Will Deacon <will.deacon@arm.com> - 2015-06-11 11:40 +0200
| From | Will Deacon <will.deacon@arm.com> |
|---|---|
| Date | 2015-06-11 11:40 +0200 |
| Subject | Re: [PATCH 1/1] arm/hw_breakpoint.c: Added #include <linux/kdebug.h> instead of<asm/kdebug.h> |
| Message-ID | <pA77Q-1Bx-11@gated-at.bofh.it> |
On Thu, Jun 11, 2015 at 10:18:44AM +0100, Maninder Singh wrote: > This patch fixes below checkpatch.pl warning: > WARNING: Use #include <linux/kdebug.h> instead of <asm/kdebug.h> > > Signed-off-by: Maninder Singh <maninder1.s@samsung.com> > Reviewed-by: Vaneet Narang <v.narang@samsung.com> > --- > arch/arm/kernel/hw_breakpoint.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/kernel/hw_breakpoint.c b/arch/arm/kernel/hw_breakpoint.c > index dc7d0a9..86eef81 100644 > --- a/arch/arm/kernel/hw_breakpoint.c > +++ b/arch/arm/kernel/hw_breakpoint.c > @@ -35,7 +35,7 @@ > #include <asm/cputype.h> > #include <asm/current.h> > #include <asm/hw_breakpoint.h> > -#include <asm/kdebug.h> > +#include <linux/kdebug.h> > #include <asm/traps.h> > /* Breakpoint currently in use for each BRP. */ afaict, we don't even need the header so we can just drop the #include altogether. Same for arm64. Will -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to top | Article view | linux.kernel
csiph-web