Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp3539479ybl; Tue, 21 Jan 2020 02:39:57 -0800 (PST) X-Google-Smtp-Source: APXvYqyR922AOrh3MIK+SVjTPglMXLl3fEvEXAZQxByEXACLK1LT2ASm7YeezmXwfzk68Aig2NSl X-Received: by 2002:a9d:51c1:: with SMTP id d1mr2951037oth.136.1579603197505; Tue, 21 Jan 2020 02:39:57 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1579603197; cv=none; d=google.com; s=arc-20160816; b=G9Y7EeXWDPlbpVZ0blgWqabZHqvgQ5Eibu8Jz2y0DocTcQDkbZdpWQAaCJB3NbQaC+ IY6xXg6oTgrgM6nq77wyhtQkKqXu104qLh0kcEpYtXFp/7W+jxH/ZhEffULrd/2wlj/n 0yL7WafeWo/f9xl0NjmrFSNiOwtUFTt1Ba87ki2wUdnpWZGAt11rdLywd0d34pTxYX74 Fw65t6y+A6nXAB5M2mD81oLkLLbj6L1JZq7h24h57xwlbueSfiqE/jAYXKpGzTxSqgdD bk+l2Epd3dAreVsF6OGetQRfSvOjoj0rQbRvfDLJR9izoU2+Xr137+579ZSxnQ1W/eUT p55A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=SjsEtZZLnOfvrJn0xNdsxsYvYNm5mlHmGpD8uUQA8/4=; b=xmnuYsxMPwKH3cfluQoW20BuFb7I24M/I2NqDQ+SDTJzDTw14cCWaPAWqLNVJixJgR 5ti4bohmf9leFD26XizlVuEYytlKau5IXbcUgmXbbmmHQ8Mq7Svp2+IjbBDRpL9yqel6 NdFedRBNsKadpB0ZNplAr35vYH9S1xgRJ7/Ua/+8P1oVXE/4iDXWvftv47IIhGMJhLtM 0GSK4jl5iq66/eD2F6Y1sMhEbWfRn3pVBCnOpCKe2MAHK3+CRGyu3V1ng7IUxpaGPmc8 t6IRXroY4DzgcYl5d9JREB60Nkj8or3a+Gj8VkiJG24c1QsWfTJ8ME5vr9rKYLj5jjKc W2+A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p184si18955807oib.144.2020.01.21.02.39.45; Tue, 21 Jan 2020 02:39:57 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729708AbgAUKh3 (ORCPT + 99 others); Tue, 21 Jan 2020 05:37:29 -0500 Received: from albert.telenet-ops.be ([195.130.137.90]:38424 "EHLO albert.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729387AbgAUKh2 (ORCPT ); Tue, 21 Jan 2020 05:37:28 -0500 Received: from ramsan ([84.195.182.253]) by albert.telenet-ops.be with bizsmtp id sydS2100i5USYZQ06ydSo3; Tue, 21 Jan 2020 11:37:26 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1itquU-00011e-BD; Tue, 21 Jan 2020 11:37:26 +0100 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1itquU-0000UL-A8; Tue, 21 Jan 2020 11:37:26 +0100 From: Geert Uytterhoeven To: Arnd Bergmann , Kevin Hilman , Olof Johansson Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven , Lubomir Rintel Subject: [PATCH 13/20] ARM: mmp: Drop unneeded select of COMMON_CLK Date: Tue, 21 Jan 2020 11:37:15 +0100 Message-Id: <20200121103722.1781-13-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200121103722.1781-1-geert+renesas@glider.be> References: <20200121103413.1337-1-geert+renesas@glider.be> <20200121103722.1781-1-geert+renesas@glider.be> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Support for Marvell MMP ARMv5 platforms depends on ARCH_MULTI_V5, and thus on ARCH_MULTIPLATFORM. As the latter selects COMMON_CLK, there is no need for MACH_MMP_DT to select COMMON_CLK. Signed-off-by: Geert Uytterhoeven Cc: Lubomir Rintel --- All patches in this series are independent of each other. Cover letter at https://lore.kernel.org/r/20200121103413.1337-1-geert+renesas@glider.be arch/arm/mach-mmp/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-mmp/Kconfig b/arch/arm/mach-mmp/Kconfig index b58a03b18bdef14c..6fe1550f43ec6aef 100644 --- a/arch/arm/mach-mmp/Kconfig +++ b/arch/arm/mach-mmp/Kconfig @@ -110,7 +110,6 @@ config MACH_MMP_DT depends on ARCH_MULTI_V5 select PINCTRL select PINCTRL_SINGLE - select COMMON_CLK select ARCH_HAS_RESET_CONTROLLER select CPU_MOHAWK help -- 2.17.1