Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp5892995ybv; Wed, 12 Feb 2020 02:10:11 -0800 (PST) X-Google-Smtp-Source: APXvYqzrSO4xat3GDo5V/Nqta8/RfI4ic7yQPi/UpMLQHKpPZHpj79O1Q5mBwXZHaqXoZDCtBilA X-Received: by 2002:a05:6830:1498:: with SMTP id s24mr9107513otq.79.1581502211257; Wed, 12 Feb 2020 02:10:11 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1581502211; cv=none; d=google.com; s=arc-20160816; b=f9T7XoQPbIVvNS80re4gp5t4RmdS7ej8EzXFGvrln20GJNbn2aoKOnTuaoG0uWADN8 xqstn+3AdYt7/uQVU0vJGPeuiwHYl4C2Ty3JC1siE7WsHT/IZLvP+2EFThujprmeX0KJ 1iDZCGw9wAiQxipaE+jd0Bk9QzzLu7Tp1Pwsb1aSf7T0vn8ZHswFTNHpOd0rKXnEikkO g4qpqXPVgKHr20FLqXgD2p/8ruMdyyKEUW8U1epjFQPIPfm5PM+3LAAtlCIpzseoN1CN G574mB42lR8RAyidMTMFOLNaxjEfIE6ab7bk3G52RXAYtJH0T8TF1AHx9Bw5tovKm0Zc qBPg== 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=BOl+dkOJWTXZx2lLL6pI7MAW/taq3Rk0BUpuCOXgD5c=; b=Ifx2+XFM9GR07DY7MuOpsW0u8kyFnHph0I9ELxMLPHVdu8PTUSpGcvfRZIA8lT6XXK xjagnQIWBQUkO6zM+FJ6oUtU9ig91mP0XNtEOLElF1WIAc8xHtGg5e1G9UBhb07EYoJy vmbylRFKS4ul5/k71yQY7JobsVLLL+MzkiNmWzIEBLq0NnrTJA/4QPZ3lOdwSIXK/Emg p0Cw9yrJ84rnKT0ypTna16rvjA8RlnrH2BNXVaNj7h2ynQC59RTHmc6knjK3DK6L49FT 3VvoS6Ytu33/6jY9ObI5/Bd90s4UqWTYfIaSNQ1nSySNgRKQvTPw6XOYpL1sLdc11AvV k/bA== 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 m26si3716242otn.307.2020.02.12.02.09.59; Wed, 12 Feb 2020 02:10:11 -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 S1729072AbgBLKIl (ORCPT + 99 others); Wed, 12 Feb 2020 05:08:41 -0500 Received: from andre.telenet-ops.be ([195.130.132.53]:56300 "EHLO andre.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729020AbgBLKIk (ORCPT ); Wed, 12 Feb 2020 05:08:40 -0500 Received: from ramsan ([84.195.182.253]) by andre.telenet-ops.be with bizsmtp id 1m8Y2200B5USYZQ01m8Y8F; Wed, 12 Feb 2020 11:08:38 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1j1owa-0001EP-IR; Wed, 12 Feb 2020 11:08:32 +0100 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1j1owa-0000Le-Gn; Wed, 12 Feb 2020 11:08:32 +0100 From: Geert Uytterhoeven To: Russell King , Matthias Brugger , Lubomir Rintel , Heiko Stuebner , Magnus Damm , Maxime Ripard , Chen-Yu Tsai , Michal Simek Cc: linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-rockchip@lists.infradead.org, linux-renesas-soc@vger.kernel.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 1/7] ARM/time: Replace by Date: Wed, 12 Feb 2020 11:08:24 +0100 Message-Id: <20200212100830.446-2-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200212100830.446-1-geert+renesas@glider.be> References: <20200212100830.446-1-geert+renesas@glider.be> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The ARM time code is not a clock provider, and just needs to call of_clk_init(). Hence it can include instead of . Signed-off-by: Geert Uytterhoeven --- arch/arm/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/kernel/time.c b/arch/arm/kernel/time.c index dddc7ebf4db4418d..09b149b09c43850b 100644 --- a/arch/arm/kernel/time.c +++ b/arch/arm/kernel/time.c @@ -8,7 +8,6 @@ * This file contains the ARM-specific time handling details: * reading the RTC at bootup, etc... */ -#include #include #include #include @@ -17,6 +16,7 @@ #include #include #include +#include #include #include #include -- 2.17.1