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 ADB89C54E67 for ; Wed, 27 Mar 2024 11:25:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=9iP8f1K57AEiPo58pzI+U+pF1Y2X80Mt8SFFrrv3woY=; b=kDjCqbKyVKJ4zQ 0qiHbgYihSYfe4v+z14yd3DKUot7ZQX3uyVKeh8bq76FjjKJCKZc91hygNaKiieW70vqJaCdRPf1Y k0Cn+x9Ds3eUlRS3VNoy2XV86AUrvjK7u3evAgvYcqdHVGrN3xlxGZLlJYCsOlojA3o1OAJJ2bFO+ yzjuLGbYoPme9EUeZnIQuhSqqKovNzXB4ttsEkIzVuT5o/goboun+Z9tsr7/dT8eeKj+RckF8bWfD +gvx4p9K+0adkC4xcyPzaPjSTLlQaBs9cv4yGHmXFZ5Wx9SyPhpMuT/IgwPS+HNOkP+5exvDNOSlN 81Qp7XljTlzsDVMENcOw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rpROx-00000008bc4-2jYa; Wed, 27 Mar 2024 11:25:03 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rpROu-00000008bbC-206i for linux-arm-kernel@lists.infradead.org; Wed, 27 Mar 2024 11:25:01 +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 CFE0C2F4; Wed, 27 Mar 2024 04:25:31 -0700 (PDT) Received: from e122027.arm.com (unknown [10.57.14.133]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 672333F694; Wed, 27 Mar 2024 04:24:56 -0700 (PDT) From: Steven Price To: Catalin Marinas , Will Deacon Cc: Steven Price , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] arm64: remove redundant 'extern' Date: Wed, 27 Mar 2024 11:24:39 +0000 Message-Id: <20240327112439.200455-1-steven.price@arm.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240327_042500_771434_52421983 X-CRM114-Status: UNSURE ( 9.05 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org It isn't necessary to mark function definitions extern and goes against the kernel coding style. Remove the redundant extern keyword. Signed-off-by: Steven Price --- arch/arm64/include/asm/fixmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/include/asm/fixmap.h b/arch/arm64/include/asm/fixmap.h index 87e307804b99..75b22b89db1a 100644 --- a/arch/arm64/include/asm/fixmap.h +++ b/arch/arm64/include/asm/fixmap.h @@ -107,7 +107,7 @@ void __init early_fixmap_init(void); #define __late_set_fixmap __set_fixmap #define __late_clear_fixmap(idx) __set_fixmap((idx), 0, FIXMAP_PAGE_CLEAR) -extern void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot); +void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t prot); #include -- 2.34.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel