From patchwork Thu Dec 5 13:20:42 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13895329 Received: from baptiste.telenet-ops.be (baptiste.telenet-ops.be [195.130.132.51]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 69AF1218EAE for ; Thu, 5 Dec 2024 13:21:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.51 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733404863; cv=none; b=MCa5+EXeQQDdQK/L3Dum0sRJTGTQ/bjUrftsptW2gOe8X6IQ57ceJo5m/zhm7tf6/hlC9BZlRXHWOSSdOqExtgIG5X/tro/eVyoQPjPGZNZTfgvTBhGn7jdN7ubBwDYsO6lD1DQOUE8y147hXMao4jpxtnEKsFWjYf3U3TPVJaM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733404863; c=relaxed/simple; bh=LWGBEeoPaVubAD70KWG41MBjiyDfHkJO3zIb+snQZRs=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=RJKZQb5JDxVEYOf4f98s3iRfuZBhiNPJPgtnP0+mx+FfY/Uda72fLKc8Y+5nZFw1u48fRN34Ho+fw1IwCJ8NOhhJZPIjNPs096V8VtTrLINVRtNWVkzMBjGBb+gt1giEogfmQWwLNVeC5cKrWG1WPLyeqWQb748/eSsT6Tj+9Es= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.51 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:b16a:6561:fa1:2b32]) by baptiste.telenet-ops.be with cmsmtp id l1Lo2D00C3EEtj2011Lol1; Thu, 05 Dec 2024 14:20:53 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tJBmh-000LQm-Hx; Thu, 05 Dec 2024 14:20:48 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tJBmi-00EQdO-AH; Thu, 05 Dec 2024 14:20:48 +0100 From: Geert Uytterhoeven To: Oleg Nesterov , Arnd Bergmann , Yury Norov , Rasmus Villemoes , Andy Whitcroft , Joe Perches , Dwaipayan Ray , Lukas Bulwahn , Masahiro Yamada , Nathan Chancellor , Nicolas Schier Cc: linux-arch@vger.kernel.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 1/3] checkpatch: Update reference to include/asm- Date: Thu, 5 Dec 2024 14:20:42 +0100 Message-Id: <2c4a75726a976d117055055b68a31c40dcab044e.1733404444.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 "include/asm-" was replaced by "arch//include/asm" a long time ago. Signed-off-by: Geert Uytterhoeven --- 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-\n" . "$here$rawline\n"); + "do not modify files in include/asm, change architecture specific files in arch//include/asm\n" . "$here$rawline\n"); } $found_file = 1; }