From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6DDE6CD5BB1 for ; Thu, 21 May 2026 13:26:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=HUIKXTarSE2ijXcAn2Y+rRSCbNWsI9dIH1tUiNycCmA=; b=0Qz0ciSFKg5+Nxs+gupG/ghMQk B7IZD5Vg28zJ0VwaqcxzEUV9/goQ35vQpW3FCCHRGbrDfQfp+Pe0mZ7U04wC9RZLPFda/yj45kzaV mfJBsNBucka+cDyFKtwFs2fVN+s2BWs3gC08Sp65qfFNdFWIZZL4cDs2k+Qwr/rgtmd/Cz7Q8kGGW LjUTboBdFZilvAQ7x20m+/1j8k6f4X+0GQlrD4UeY4y0qnSw2vkzQbJipA2fyx4LQAAo7aA+Y/w/9 pZJxQk45E+k/ReqOfiDATlRlxEM0jYiYoMFx7ZhWICTOeyYlwYuaXatAUitO7yTTxXw3Z2HP2wmuR 9Vylo7cA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.99.1 #2 (Red Hat Linux)) id 1wQ3Pg-00000007rqe-15KD; Thu, 21 May 2026 13:26:12 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.99.1 #2 (Red Hat Linux)) id 1wQ3Pc-00000007rpM-43NC for linux-arm-kernel@lists.infradead.org; Thu, 21 May 2026 13:26:10 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 449A12BCB; Thu, 21 May 2026 06:26:02 -0700 (PDT) Received: from lakrids.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 1F0C63F7B4; Thu, 21 May 2026 06:26:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1779369967; bh=nbea7DoplJ2jo710471pZZ5/IQgX6MpmBMVAh7D0sKw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Eq0U73PwY+hsOWqgG/BsAOuFxLw5vWjdjVq/7yDNmJ3vYciqy0e7etd1oK9n+Jvv2 Tul3IGo01goXHYDCapAjIgDpKx4Za5F9MSolnCszqBAyL2Hh0gAwVS3GnKMkMYfkoH scVOeZsYUSeqhZ1HQ2itTz0iCeni/jNg2qi15XYQ= From: Mark Rutland To: linux-arm-kernel@lists.infradead.org, kvmarm@lists.linux.dev Cc: broonie@kernel.org, catalin.marinas@arm.com, james.morse@arm.com, mark.rutland@arm.com, maz@kernel.org, oupton@kernel.org, tabba@google.com, will@kernel.org Subject: [PATCH 01/18] KVM: arm64: Don't include Date: Thu, 21 May 2026 14:25:39 +0100 Message-Id: <20260521132556.584676-2-mark.rutland@arm.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20260521132556.584676-1-mark.rutland@arm.com> References: <20260521132556.584676-1-mark.rutland@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.9.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20260521_062609_064793_C7C27D32 X-CRM114-Status: UNSURE ( 8.89 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org There's no need for hyp/entry.S to include . The fpsimd macros have never been used by code in hyp/entry.S, and were instead used by code in hyp/fpsimd.S. Remove the unnecessary include. There should be no functional change as a result of this patch. Signed-off-by: Mark Rutland Cc: Catalin Marinas Cc: Fuad Tabba Cc: James Morse Cc: Marc Zyngier Cc: Mark Brown Cc: Oliver Upton Cc: Will Deacon --- arch/arm64/kvm/hyp/entry.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm64/kvm/hyp/entry.S b/arch/arm64/kvm/hyp/entry.S index 11a10d8f5beb2..308100ed25de9 100644 --- a/arch/arm64/kvm/hyp/entry.S +++ b/arch/arm64/kvm/hyp/entry.S @@ -8,7 +8,6 @@ #include #include -#include #include #include #include -- 2.30.2