From nobody Sat Feb 7 17:55:01 2026 Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 878E6214808 for ; Thu, 9 Jan 2025 10:47:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.177 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736419632; cv=none; b=PwlvR9X7j20BIAYc3xm4pB6e8S1Lf/SKhhyPU3iU4M2Svdii8BGgoGB944iflDl6h0SESffrtI/Nc35Aimu1cO4rZchE96qbM+UWmrWUjtkImCfB3z9OfNa6Sa5SVT4j82ZOj8j/sCaGabU4YfSo4sf5i7Z+ETMt4JvSTpXZO3M= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736419632; c=relaxed/simple; bh=q7PZGqzEUwXjzYOBF5YJ7OBkhs+nB2dWT/WOslt4w9s=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=JazSJnF8fU3Jja+utDEt5cQ1Dd0nWWoHxfksLA17tCBMYCEFm8BbTaYOV5W5A6/mEBUsZuK4H5Q04Xb5KnkjLHdhbd2D2pX6TYvm9v25MmDTSUcWMbU6ERLEUZCAyWVtikDo8t6flFrp7xlj1fOcnPWRTtRoQG2NedViaTl450Y= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=ldRjaSt3; arc=none smtp.client-ip=91.218.175.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="ldRjaSt3" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1736419622; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=xirNoytw/1Nc8xyuYFAIfqL2j/ym7APCAmGVFyBjkHQ=; b=ldRjaSt3nWQveY2yPKDlL4n5eSDMOlU2EbD3RP14YFZ3Q1JtFNUjWg95cWQ+UIy6suoZgc 1023S3hMhMoYIUnAU4BFjRyMI+yf7/S/s+VBm3V68d4RVHXcYloZk+KdolTN/8BQwMhWsr 8QLoxfwizU/JzK5gKW55DpOAGNzwV1E= From: Thorsten Blum To: Catalin Marinas , Will Deacon , Arnd Bergmann Cc: Thorsten Blum , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] arm64: Remove duplicate included header Date: Thu, 9 Jan 2025 11:46:34 +0100 Message-ID: <20250109104636.124507-2-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" The header asm/unistd_compat_32.h is included whether CONFIG_COMPAT is defined or not. Include it only once and remove the following make includecheck warning: asm/unistd_compat_32.h is included more than once Signed-off-by: Thorsten Blum Acked-by: Arnd Bergmann --- arch/arm64/include/asm/seccomp.h | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm64/include/asm/seccomp.h b/arch/arm64/include/asm/secc= omp.h index b83975555314..bf6bf40bc5ab 100644 --- a/arch/arm64/include/asm/seccomp.h +++ b/arch/arm64/include/asm/seccomp.h @@ -23,7 +23,6 @@ #define SECCOMP_ARCH_NATIVE_NR NR_syscalls #define SECCOMP_ARCH_NATIVE_NAME "aarch64" #ifdef CONFIG_COMPAT -#include # define SECCOMP_ARCH_COMPAT AUDIT_ARCH_ARM # define SECCOMP_ARCH_COMPAT_NR __NR_compat32_syscalls # define SECCOMP_ARCH_COMPAT_NAME "arm" --=20 2.47.1