[PATCH 1/3] checkpatch: Update reference to include/asm-<arch>
From: Geert Uytterhoeven
Date: Thu Dec 05 2024 - 08:21:23 EST
"include/asm-<arch>" was replaced by "arch/<arch>/include/asm" a long
time ago.
Signed-off-by: Geert Uytterhoeven <geert+renesas@xxxxxxxxx>
---
scripts/checkpatch.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 9eed3683ad76caff..dbb9c3c6fe30f906 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2875,7 +2875,7 @@ sub process {
if ($realfile =~ m@^include/asm/@) {
ERROR("MODIFIED_INCLUDE_ASM",
- "do not modify files in include/asm, change architecture specific files in include/asm-<architecture>\n" . "$here$rawline\n");
+ "do not modify files in include/asm, change architecture specific files in arch/<architecture>/include/asm\n" . "$here$rawline\n");
}
$found_file = 1;
}
--
2.34.1