Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp3513466ybl; Tue, 21 Jan 2020 02:07:27 -0800 (PST) X-Google-Smtp-Source: APXvYqwmmGylumqdYRodEdjN/ZLx+T2qW4rRPzNhmabTPCeQXDd9eHbhLOUXfwsCOuIUTuQU7xk5 X-Received: by 2002:a05:6830:10d7:: with SMTP id z23mr2993677oto.114.1579601246913; Tue, 21 Jan 2020 02:07:26 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1579601246; cv=none; d=google.com; s=arc-20160816; b=s5zjmLqnojDZP+/7HMmhRRz7tRpRmugndZe1ujW1Cajm5UxjEBXsSPuoXNGtp/wHmJ 4h+P9N0PAPuk0IHZAG/WH1h+eNwItQMI0xdK9xWb389uBY6gcWY46dzEr1XcbTLmEX41 L9VYWHEFFd9N2FzKlVcX6zltZgHSJLUYym1IKyfmu39zABAZF98A6yRt5ZTb1mzDndDP xHUNfV056blwVpA9C465QEyroK73C62LQAzsYlr5l9LQHDKGqLeWS9K8vOu1QTwfkCcE wV4CeRW9Fj1GJu4Vf4tXwCNy9pTb/6ztYqZCmY6fr8hyKmxzSq8/FB4TSUvgo06mSy2K cnyA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=OvAirO5Uo39LcFSZyZaZoltQ8Kgnh8tGY4WgzDVy10I=; b=0WGLEeuE3gOpZkiLa5VEfiV0jYaPgOhsX1E8dJrZqFBS4/IgmLgPc1ycgFkaRuFQUq 2y9VoRw2h25+pGMeCA7K4wpCT10ES8nAmUrctvwEka7nEgJIiT20eg/Ze/eoVPxbNuPI 2RzVAa6wsDPY+dVzps9/H7EY0hOX28vtfqEVR3KALAcIGsO0ywTAR812EGMdFXwRVPsf 8K8MUCQOfnV0ycSYzGOTGQZy9X0OJbB1jqERR/N3p4vWHxfKjvYLpin94UZNsvlDkxaU 7iiabRzRkRTse7Q50WYndaMyn3y9ajxeB7tG3feAhdAt3rDO2bok4qLcDYqWfU1Melac eaiw== 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 i8si18953590oih.206.2020.01.21.02.07.15; Tue, 21 Jan 2020 02:07:26 -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 S1729417AbgAUKGQ (ORCPT + 99 others); Tue, 21 Jan 2020 05:06:16 -0500 Received: from baptiste.telenet-ops.be ([195.130.132.51]:55668 "EHLO baptiste.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728803AbgAUKGP (ORCPT ); Tue, 21 Jan 2020 05:06:15 -0500 Received: from ramsan ([84.195.182.253]) by baptiste.telenet-ops.be with bizsmtp id sy6A210035USYZQ01y6ANN; Tue, 21 Jan 2020 11:06:13 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1itqQE-0000UK-24; Tue, 21 Jan 2020 11:06:10 +0100 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1itqQD-0008ON-Vk; Tue, 21 Jan 2020 11:06:10 +0100 From: Geert Uytterhoeven To: Mark Rutland , Marc Zyngier Cc: Russell King , Arnd Bergmann , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] ARM: arch timer: Drop unneeded select GENERIC_CLOCKEVENTS Date: Tue, 21 Jan 2020 11:06:08 +0100 Message-Id: <20200121100608.32218-1-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The ARM Architected timer is available on ARMv7 SoCs only. As both ARCH_MULTIPLATFORM and ARM_SINGLE_ARMV7M select GENERIC_CLOCKEVENTS, there is no need for HAVE_ARM_ARCH_TIMER to select GENERIC_CLOCKEVENTS. Signed-off-by: Geert Uytterhoeven --- arch/arm/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 96dab76da3b3962b..ea3ed263d3f50bb4 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1246,7 +1246,6 @@ config HAVE_ARM_ARCH_TIMER bool "Architected timer support" depends on CPU_V7 select ARM_ARCH_TIMER - select GENERIC_CLOCKEVENTS help This option enables support for the ARM architected timer -- 2.17.1