From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-184.mta0.migadu.com (out-184.mta0.migadu.com [91.218.175.184]) (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 1AD7233A6E2 for ; Wed, 29 Apr 2026 10:13:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.184 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777457601; cv=none; b=QaTyVF+dwdm0Zpw8zA1yTwSvptvlkipzwhinGFg4HfZ6+wnRFph9mt8fFb0JnXjgIxxMKQALb6l29njoM7xlgx4fFLBkOR1kYYdNgTJlDWOPAFuTgX5zLCzEs8nqFHBgoPGWdGt47Qas+zsXN5GDld0ACNve6gH59IJbECfSgRI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777457601; c=relaxed/simple; bh=1qE7cH4g9CsP9xMsOjJni1uhmBxDaMniZbXpAFRSr34=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Imp96nvmLdMi3dDhe8unwJ7i+eoul2W33uviYuiWrqTTxtmmMnlnVatzi+et46a/A6OKGYYQcLZ/uQD7SpCSV5LKFsrIrmCftOJjR7iI2SCN6prCv7QKz0iX58bok5pMkP/0E4+xUchxjNmIT/SSPNJhO+EEoHWlHK6i9wPL0Ys= 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=dphUguAK; arc=none smtp.client-ip=91.218.175.184 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="dphUguAK" 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=1777457598; 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=rahapD/e1WGVec1JjuUgHCwyEPSPNYEmZAzhjt1dQXE=; b=dphUguAKfQGW70o/tfXHzZYCfoI4L25EvBGF2rjfn1Z7OlCeuivELgvHK17nttHqccus3B LT/usDvIDwY/LuNeez2V+SvFcWl81K4p6Ml+yrpC4viROsycFdQAR2wrz4xr51erIpzgbE ZsZQzS4ZYhRun480kuFmltOMogXahHY= From: Thorsten Blum To: Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H. Peter Anvin" Cc: Thorsten Blum , linux-kernel@vger.kernel.org Subject: [PATCH] x86/purgatory: fix #endif comment Date: Wed, 29 Apr 2026 12:12:21 +0200 Message-ID: <20260429101221.110159-3-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=591; i=thorsten.blum@linux.dev; h=from:subject; bh=1qE7cH4g9CsP9xMsOjJni1uhmBxDaMniZbXpAFRSr34=; b=owGbwMvMwCUWt7pQ4caZUj3G02pJDJkfb7am5HLH6NiZnmYwXufK7aN9ID20Sjd6stiPtSV3P TXOvA3sKGVhEONikBVTZHkw68cM39Kayk0mETth5rAygQxh4OIUgIk0CDMyLOmS1d1wpfTVdUsZ U1+zG3w2/dU1BQyyK66neb4//0fsMCPD0xjWY/2ro1pVdmyc0Mr80v/oktnlSWb5HTZTIxlO8vZ zAQA= X-Developer-Key: i=thorsten.blum@linux.dev; a=openpgp; fpr=1D60735E8AEF3BE473B69D84733678FD8DFEEAD4 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Replace _ASM_PURGATORY_H with _ASM_X86_PURGATORY_H to match the actual macro name. Signed-off-by: Thorsten Blum --- arch/x86/include/asm/purgatory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/asm/purgatory.h b/arch/x86/include/asm/purgatory.h index 2fee5e9f1ccc..56a9e81edb15 100644 --- a/arch/x86/include/asm/purgatory.h +++ b/arch/x86/include/asm/purgatory.h @@ -8,4 +8,4 @@ extern void purgatory(void); #endif /* __ASSEMBLER__ */ -#endif /* _ASM_PURGATORY_H */ +#endif /* _ASM_X86_PURGATORY_H */