From nobody Sun Nov 24 06:40:06 2024 Received: from out30-118.freemail.mail.aliyun.com (out30-118.freemail.mail.aliyun.com [115.124.30.118]) (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 46E0D944E for ; Thu, 7 Nov 2024 01:03:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.118 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730941393; cv=none; b=J74muIbvaJXAWnZzb3iBKDNNnCAGWEMWohAZSzJptcnEL5FqhYEEprQ1s1igT+mAHjuraahxzgIimxqpbSfNH67Xb3LdZv/eHdjBADiWYaS4TOzIGkQbYmiACYPSe/uhj+B3KeRnst4/dJWncE85hXTGc42Hx9KXVW4hnZzKI00= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730941393; c=relaxed/simple; bh=ujxv6AVqlgiwJ11L4xJcYK9eyf7odIV2YvlYms/8vuQ=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=eddMUvaeFKEf3o50A3wUh+gGRA9m06o53oVUlxnaHQuOc1sLR5KxMhQz/hA9I1eBjfkxq4DqZH3oBPdfSGbD9K5aMaw0DfIJdZP7WbvxvAltznzZk04jnCQa8BUhrPJBU+sqBJJvdYYOUE6+d91RgBKSVPVl/aOUF6le78kMlic= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=OnbRl181; arc=none smtp.client-ip=115.124.30.118 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="OnbRl181" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1730941381; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=v0DVufawgn8EOdvVe8gSpxcdjOljGbR43bLm6y9/QKo=; b=OnbRl181mSVky4poEbu4rqKuzaKVVgJpEslv5UVXwOPAUETYvo84Y0ed3rSEjpxqtEXDNvQ8MOQB2S2TDl5VGSIiRSeQ5lObgsMjGcgfw5RUMyF3av/ZvIG7uosk3BaYzs/kvXUrjL2jiuZ+SC+XiCxKyghWbGA2MAwqq8i8SY8= Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0WItWykL_1730941380 cluster:ay36) by smtp.aliyun-inc.com; Thu, 07 Nov 2024 09:03:01 +0800 From: Yang Li To: mpe@ellerman.id.au, npiggin@gmail.com, christophe.leroy@csgroup.eu, naveen@kernel.org, maddy@linux.ibm.com Cc: linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] powerpc/machdep: Remove duplicated include in svm.c Date: Thu, 7 Nov 2024 09:02:59 +0800 Message-Id: <20241107010259.46308-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.32.0.3.g01195cf9f 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 Content-Type: text/plain; charset="utf-8" The header files linux/mem_encrypt.h is included twice in svm.c, so one inclusion of each can be removed. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D11750 Signed-off-by: Yang Li --- arch/powerpc/platforms/pseries/svm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/powerpc/platforms/pseries/svm.c b/arch/powerpc/platforms/= pseries/svm.c index c5d0f92c7969..384c9dc1899a 100644 --- a/arch/powerpc/platforms/pseries/svm.c +++ b/arch/powerpc/platforms/pseries/svm.c @@ -10,7 +10,6 @@ #include #include #include -#include #include #include #include --=20 2.32.0.3.g01195cf9f