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 51CCBC54E69 for ; Tue, 14 Nov 2023 20:05:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232746AbjKNUFP (ORCPT ); Tue, 14 Nov 2023 15:05:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37000 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232196AbjKNUFN (ORCPT ); Tue, 14 Nov 2023 15:05:13 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 19C47A7 for ; Tue, 14 Nov 2023 12:05:11 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 312B6C433C8; Tue, 14 Nov 2023 20:05:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1699992310; bh=oDLylzWb9XOoeGUg7Wqz1W9FNvhlRbijO4lCH9ddguU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=o6TuzT8X6+03MokWu0xHLXoYfuNFNOUHWCCbEP5apxtlsI4P7WOXmDToB2DZVwY5E 42VbgFxJGkTfeEOxBD4F0bN+dh92e8Q/Pj80FFVsl2Ni+MXU508TjNxsIqmQoo6uk4 AC+o1d8VIPN/K0oXlVo+JBPKSMNqEQDOWsWwVnj7wLwV1FoJrkqyVyVD+Mt1x0ayd7 QdPA/IPxbV+3Z2xIsla3v3RutMH9sS3i/bmJzXzQN7gGfnR4jk/XXPcGEKkX2uhW9A KqKc3La7Y9mBJfDn4r55tn2HyRHbKpqwd3Q98XzxfKPngoJrjZ19ajZ2ZXzsBnbaYa ssIccWziYhMDQ== Date: Tue, 14 Nov 2023 13:05:08 -0700 From: Nathan Chancellor To: Lukas Bulwahn Cc: Masahiro Yamada , Nick Desaulniers , Nicolas Schier , Helge Deller , linux-kbuild@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] linux/export: clean up the IA-64 KSYM_FUNC macro Message-ID: <20231114200508.GA3378955@dev-arch.thelio-3990X> References: <20231110120722.15907-1-lukas.bulwahn@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231110120722.15907-1-lukas.bulwahn@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 10, 2023 at 01:07:22PM +0100, Lukas Bulwahn wrote: > 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 I see you sent a patch for the other instance of CONFIG_IA64 that I see in tree still. LGTM. Reviewed-by: Nathan Chancellor > --- > 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 45fca09b2319..69501e0ec239 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.17.1 >