From patchwork Fri Dec 15 06:27:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Jinchao X-Patchwork-Id: 13494022 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 3D716C4332F for ; Fri, 15 Dec 2023 06:28:07 +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:Subject:CC:To: From:Date: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=zTsN/XrnpdaU3djcsWHsocL1bAvlpOmtFuNnj3KV++c=; b=IkSlP9NnTM5l9O wLexwVpgtOXWDqqfiYdv1w7jNJucV85oxRntVyXak4a32ojDQGSEj6hhtPPxAa2qj0Krsysv9le8u +qWxr9GvhovmxxUDe1uo/kIQ3f2+9Dc0ubxNoFBOJ+9V5VS6eK7WVA4ZizqvkVMCq8tZlm7QYLHf1 SCj+iTZvXSXgb8S+ZIMpEUxt8l2XJ7sSiYL9Zuwhk7bpvADaLaUhTuaSatFaKGIGdqnf97rjWLTPF Ms8HGzxJgO80uTt4dToVAILy5h9ZWvSEiXo4AamsuEc10LYZbwWkUXdqsZwFNEMGCiI+xlkh1S06p xosfcCtRrX6SGnCelQJg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1rE1fj-002BfM-0L; Fri, 15 Dec 2023 06:27:43 +0000 Received: from wxsgout04.xfusion.com ([36.139.87.180]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1rE1fg-002BdL-0N for linux-arm-kernel@lists.infradead.org; Fri, 15 Dec 2023 06:27:41 +0000 Received: from wuxshcsitd00600.xfusion.com (unknown [10.32.133.213]) by wxsgout04.xfusion.com (SkyGuard) with ESMTPS id 4Srzgt2QxZzB2Nhw; Fri, 15 Dec 2023 14:23:54 +0800 (CST) Received: from localhost (10.82.147.3) by wuxshcsitd00600.xfusion.com (10.32.133.213) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.23; Fri, 15 Dec 2023 14:27:24 +0800 Date: Fri, 15 Dec 2023 14:27:23 +0800 From: Wang Jinchao To: Russell King , , CC: , Subject: [PATCH] arm: remove duplicated include Message-ID: <202312151426+0800-wangjinchao@xfusion.com> MIME-Version: 1.0 Content-Disposition: inline X-Originating-IP: [10.82.147.3] X-ClientProxiedBy: wuxshcsitd00602.xfusion.com (10.32.132.250) To wuxshcsitd00600.xfusion.com (10.32.133.213) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231214_222740_454598_CC70531F X-CRM114-Status: UNSURE ( 8.65 ) 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 remove duplicated include Signed-off-by: Wang Jinchao --- arch/arm/include/asm/pgtable.h | 4 ++-- arch/arm/mach-footbridge/common.c | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/arch/arm/include/asm/pgtable.h b/arch/arm/include/asm/pgtable.h index 16b02f44c7d3..8c0de013f85e 100644 --- a/arch/arm/include/asm/pgtable.h +++ b/arch/arm/include/asm/pgtable.h @@ -19,14 +19,14 @@ extern struct page *empty_zero_page; #define ZERO_PAGE(vaddr) (empty_zero_page) #endif +#include + #ifndef CONFIG_MMU -#include #include #else -#include #include #include diff --git a/arch/arm/mach-footbridge/common.c b/arch/arm/mach-footbridge/common.c index 85c598708c10..c8f52d52b91b 100644 --- a/arch/arm/mach-footbridge/common.c +++ b/arch/arm/mach-footbridge/common.c @@ -30,7 +30,6 @@ #include #include -#include static int dc21285_get_irq(void) {