lkml.org 
[lkml]   [2020]   [Nov]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] checkpatch: add --fix option for INCLUDE_LINUX
On Sun, Nov 22, 2020 at 1:35 AM Joe Perches <joe@perches.com> wrote:
>
> On Sat, 2020-11-21 at 21:47 +0530, Dwaipayan Ray wrote:
> > Provide fix option to INCLUDE_LINUX check to replace asm
> > includes.
> >
> > Macros of type:
> > #include <asm/percpu.h>
> >
> > are corrected to:
> > #include <linux/percpu.h>
> []
> > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> []
> > @@ -5468,8 +5468,11 @@ sub process {
> > CHK("ARCH_INCLUDE_LINUX",
> > "Consider using #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
> > } else {
> > - WARN("INCLUDE_LINUX",
> > - "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr);
> > + if (WARN("INCLUDE_LINUX",
> > + "Use #include <linux/$file> instead of <asm/$file>\n" . $herecurr) &&
> > + $fix) {
> > + $fixed[$fixlinenr] =~ s/\<asm\/$file\>/\<linux\/$file\>/;
>
> $file can include a slash.
>
> e.g.: arch/arm/kernel/atags_parse.c:#include <asm/mach/arch.h>
>
> Probably simpler to use /Q /E quoting.
>
>
Thanks. I will do that.

Regards,
Dwaipayan.

\
 
 \ /
  Last update: 2020-11-21 21:32    [W:0.149 / U:0.276 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site