From patchwork Tue Jan 10 08:01:29 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 13094791 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 E30B7C46467 for ; Tue, 10 Jan 2023 08:02:45 +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=40P2ZanaS9rRqsz91RlriqH/21qfZf5Fd9JBq+lJaUc=; b=rzULMAh1L4mhpa +IAXfrDQ7a3zxkilUDTn6d8Yuc6weeiUvJ31GGUm4a/5Ev/Ak1fKXNhu73Ii1P4LEXER5ZKysA7p1 6D1gCuYKnGUX6sPDOs+cMg9bQxZsQF2YffN1pfsYTbAvCi8XGCWzrEWWaOzA3Ikfxf8rsI5Oqg/uh QhDAke7fPc7NvSue31q9gprhdfIYTitI0ta44Z4S9Ov9WVDFKa6DG9Nxd9db0c9Wr37QfxrwYyJZf 2bzx+t9gf3IFNCuaMkTGRv82BKMfxLOVseQjl6fVUW+bfWMDktBWU0+yFuN+ae9hkSp8KOAfTgoyf Ti2pJ8d/pkGY8VLMrooQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pF9Zu-005gRt-On; Tue, 10 Jan 2023 08:01:50 +0000 Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pF9Zr-005gQw-SG for linux-arm-kernel@lists.infradead.org; Tue, 10 Jan 2023 08:01:49 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id C52FF614B5; Tue, 10 Jan 2023 08:01:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8F8A0C433D2; Tue, 10 Jan 2023 08:01:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1673337706; bh=4DbMRmg8+IursOw5O7v8oTrvD4RrdJthfiKf942CnmE=; h=From:To:Cc:Subject:Date:From; b=Xc55i1JAozZNfvVNzALMMJWHv1Uxl0JM9oHzKcvUnJoHYJXjhbwSsL+QJOl3Pd3DG sxbYRPnq0bO3jbW3q9rTNra3WgUCxsBvCryKKaUi82kx/bz6ShAoiXyHaQXQE9AGtA KbMNoDfeQxEQMxerls1piKtp9PY/WUKP3TY0HoPl9zk8dJuCIntoClOdFTBX0/1TF9 YT9t2xgY9MeJoxssRT+Gg4Z9C37iqh31avxQF0G2pOGPJtp3kxuVG8WVFXgmxCvqLp iOGwv3VKRQGxJKhkqYUl6VYI95gG75TDp66Uk3kmsXqacyw2Hsf7C5lbprw0JgU5Nq 9CskxBwxHqJjA== From: Masahiro Yamada To: patches@armlinux.org.uk Cc: linux-kernel@vger.kernel.org, Masahiro Yamada , Arnd Bergmann , Ben Wolsieffer , Nathan Chancellor , Nick Desaulniers , Nick Hawkins , "Russell King (Oracle)" , Russell King , linux-arm-kernel@lists.infradead.org Subject: [PATCH] ARM: remove meaningless arch/arm/mach-rda/Makefile Date: Tue, 10 Jan 2023 17:01:29 +0900 Message-Id: <20230110080130.160528-1-masahiroy@kernel.org> 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-20230110_000147_984832_60B298B7 X-CRM114-Status: GOOD ( 12.28 ) 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 You do not need to put Makefile if there is nothing to compile. Signed-off-by: Masahiro Yamada --- KernelVersion: v6.2-rc1 arch/arm/Makefile | 1 - arch/arm/mach-rda/Makefile | 2 -- 2 files changed, 3 deletions(-) delete mode 100644 arch/arm/mach-rda/Makefile diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 4067f5169144..233496bfbe19 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -213,7 +213,6 @@ machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2 machine-$(CONFIG_ARCH_ORION5X) += orion5x machine-$(CONFIG_ARCH_PXA) += pxa machine-$(CONFIG_ARCH_QCOM) += qcom -machine-$(CONFIG_ARCH_RDA) += rda machine-$(CONFIG_ARCH_REALTEK) += realtek machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip machine-$(CONFIG_ARCH_RPC) += rpc diff --git a/arch/arm/mach-rda/Makefile b/arch/arm/mach-rda/Makefile deleted file mode 100644 index f126d00ecd53..000000000000 --- a/arch/arm/mach-rda/Makefile +++ /dev/null @@ -1,2 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-only -obj- += dummy.o