Received: by 2002:a05:6a10:a0d1:0:0:0:0 with SMTP id j17csp426848pxa; Wed, 19 Aug 2020 05:31:53 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxKWpTzxuHx9oU9UVZbOf6DSqCNYeD4AGR67dLVRyjGryHy08Feb1IlBFChggPF3uWPvRiG X-Received: by 2002:a17:906:cb8c:: with SMTP id mf12mr24883048ejb.3.1597840313731; Wed, 19 Aug 2020 05:31:53 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1597840313; cv=none; d=google.com; s=arc-20160816; b=B3w1Lsa+pLsO5hUNouOpQ0WynIFs5JfZbgm9DzLxVCirmrIS7wZB6qYgNh15OXyr2b 5MG0QOKXSe+6jfNChPI5EQzdK9GMfRpY0xFzd2sOaEhstmTOrNkGn3pkjFx0NgxoStEb 8CfGNFZSy3cAdiZp6W/V5c2UO/Q3tRfPS7KOvnZY8dtouHrzqVYSp++qf3CBISqR+kjq bu9G2b8sJnpy5ax0g5x2EHChZEfK/vrjkV0b/vAGiAkpZyPhUhScktH+rP8g2G5u1PZi e9IiVl4ZRS1/UDYA1et4kLhuDvIvAX+15l45yy5E3758Njn4sd53XrYux4qaF3bNx6AZ AOeA== 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=798ay2UN7hAKZP2y/PKXHsxH+NuQjuNc48wjU53BaXA=; b=hWhQD314QiZtnnHTlyDYUYJf253JkgUGE2mr5KEcFVvDla0spHmg2vUH+fZJeg/7DU gcdiZFEXC0vT9HqkhkB32IrNlG5qFn65sM6RBvvBn2HAxOwQrG5Sd3/QGF8zVzN8WzGR UwaDrMXh8XhgiAi3boZP+FVWoJTgfFhRNcNp+WyBWQ6WM9cMBWo4XRhHAZgyNoaz2OlZ vp6sOeRodHqBEy1sVfV36W86m8At75s2MNOWuBCVgmvb2JD5iZSAZLxF9pI6+iEPtPD4 3WSBKKzZwB0AIEMJOEubvfMVNCN5d6jSY89lS8hmS316Y8QJ6h9whAOJxyJwGNtGjc8Q S+pA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id h14si15791010ejd.603.2020.08.19.05.31.29; Wed, 19 Aug 2020 05:31:53 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727846AbgHSMa5 (ORCPT + 99 others); Wed, 19 Aug 2020 08:30:57 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59942 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726752AbgHSMay (ORCPT ); Wed, 19 Aug 2020 08:30:54 -0400 Received: from albert.telenet-ops.be (albert.telenet-ops.be [IPv6:2a02:1800:110:4::f00:1a]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 17FB8C061757 for ; Wed, 19 Aug 2020 05:30:53 -0700 (PDT) Received: from ramsan ([84.195.186.194]) by albert.telenet-ops.be with bizsmtp id HQWs2300C4C55Sk06QWsQV; Wed, 19 Aug 2020 14:30:52 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1k8NEy-0002DJ-Ho; Wed, 19 Aug 2020 14:30:52 +0200 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1k8NEy-0004tu-GH; Wed, 19 Aug 2020 14:30:52 +0200 From: Geert Uytterhoeven To: Chris Zankel , Max Filippov Cc: linux-xtensa@linux-xtensa.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH v2] xtensa: Replace by Date: Wed, 19 Aug 2020 14:30:51 +0200 Message-Id: <20200819123051.18796-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 Xtensa 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 Reviewed-by: Stephen Boyd Acked-by: Max Filippov --- v2: - Add Reviewed-by, Acked-by. --- arch/xtensa/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/xtensa/kernel/time.c b/arch/xtensa/kernel/time.c index 77971fe4cc95ba2b..e8ceb1528608188c 100644 --- a/arch/xtensa/kernel/time.c +++ b/arch/xtensa/kernel/time.c @@ -13,7 +13,7 @@ */ #include -#include +#include #include #include #include -- 2.17.1