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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4E662C61D99 for ; Wed, 22 Nov 2023 15:35:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344483AbjKVPfx (ORCPT ); Wed, 22 Nov 2023 10:35:53 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50126 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344523AbjKVPfY (ORCPT ); Wed, 22 Nov 2023 10:35:24 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 818B72738; Wed, 22 Nov 2023 07:34:20 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8532DC43397; Wed, 22 Nov 2023 15:34:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1700667253; bh=B/bJkVlPR23vUesozPLfwxv3id4Wa8uPw0GU0TIH/SI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d1zWv5tqFLoAikexzJslGPFWiRQNDTEycHPNZ7PB9CIlro1MvcmH/LamLgFnrRkKy OWFV5ZUO7bI+zuk2AUExEwFoYNkRTSlFT2x7vxTVciF4duvlAl+4DS/ElXuah/svgM M/65uAr3RK9L9Ahdb9jaNcLcGLFJuieCqpws3matOceX993JuIEaMwRqhAsXBzwPTe 0NeygFhWgtyAIRckaY2TYzxAJ6NjXLK6s6yxa0Wy6tT+SqJqyj4FbD28NpL871UXnQ he2RwBXMmsnJ76e5eay+oJEDGkvhik4AnUwUrxH5ExBavBJpN7tDosf6xDnDrJeaxL KKoNNcNV6j9Nw== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Lukas Bulwahn , Nathan Chancellor , Masahiro Yamada , Sasha Levin , deller@gmx.de, ndesaulniers@google.com Subject: [PATCH AUTOSEL 6.5 10/15] linux/export: clean up the IA-64 KSYM_FUNC macro Date: Wed, 22 Nov 2023 10:33:12 -0500 Message-ID: <20231122153340.852434-10-sashal@kernel.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231122153340.852434-1-sashal@kernel.org> References: <20231122153340.852434-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.5.12 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Lukas Bulwahn [ Upstream commit 9e0be3f50c0e8517d0238b62409c20bcb8cd8785 ] With commit cf8e8658100d ("arch: Remove Itanium (IA-64) architecture"), there is no need to keep the IA-64 definition of the KSYM_FUNC macro. Clean up the IA-64 definition of the KSYM_FUNC macro. Signed-off-by: Lukas Bulwahn Reviewed-by: Nathan Chancellor Signed-off-by: Masahiro Yamada Signed-off-by: Sasha Levin --- include/linux/export-internal.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/linux/export-internal.h b/include/linux/export-internal.h index 45fca09b23194..69501e0ec239f 100644 --- a/include/linux/export-internal.h +++ b/include/linux/export-internal.h @@ -50,9 +50,7 @@ " .previous" "\n" \ ) -#ifdef CONFIG_IA64 -#define KSYM_FUNC(name) @fptr(name) -#elif defined(CONFIG_PARISC) && defined(CONFIG_64BIT) +#if defined(CONFIG_PARISC) && defined(CONFIG_64BIT) #define KSYM_FUNC(name) P%name #else #define KSYM_FUNC(name) name -- 2.42.0