Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp5896138ybv; Wed, 12 Feb 2020 02:13:51 -0800 (PST) X-Google-Smtp-Source: APXvYqyxB1GDpTPaFXB1BKKw/jXHnsKuRvmSI7QCw23ipXMMQ80G6qzqbo3FILDz1IZcZzJGzsDe X-Received: by 2002:a9d:1c9c:: with SMTP id l28mr8514983ota.210.1581502431348; Wed, 12 Feb 2020 02:13:51 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1581502431; cv=none; d=google.com; s=arc-20160816; b=vR4xQ2b9QgRjWw+Qoy0+8TLWI7yuvKHuEZ2t0PdPKvKpJDZF4OmCISWVjyQDEGwzs+ I4C4ckx1VVjsnQtCbEg886/By/thYSaKG2qhsfmYpaJwrOUsx94BL+CmDZcQmsoO4ugb tcbgSwRa9Ku9WrOUlgG6EGLKV57RnEtxA9D63o5PcLev+1MJ7qcFXamxUM2qxNYva8Pl TB0K9I6vHfhAw0i7I4VKGwTb+uwrDOVi3dRjwyNLIWLdoWJyozdcZUN/njVQRtd/UM11 LZSPqAZB02oa+EXWZnlc2nGdzeT7EbIyzU30/vBrcqYPd8IIYAoaA+Qnvy1p+qOWip/+ vm0Q== 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=Q30fQ7wNXT94QBzwKtWhw+0hFFyL/9Mjx5prpGdolIM=; b=GdvVBTNnq6SBsXbm0Giotp4i5IIZllFf+XS3fS1llHCsAkJfoEb4v7tLfsP7j/XiCe +hZOmSbX22fdxmp99K3sBiopL7EUDpd8PKCbIekMKsXk2kW/CkrkoNihNITk7ik8nesA LWjpZuz9d7J1yPxXXDGsT8afux+qoCPkqIHptAmh0susT6/wCGc9cuANT75VykwZGR8X 3heLg2tFrO+T4pRH63QG6WRh8SR+Lq3KqXsN8GdnX9Ufa/uZWtiAHHWmZB0PDyo4qQ3Y z7NCczqb0UGLfCPxsj3gZTZIb1RD17zEw7rJ9IGUc5xUo6O9Ekk71ur0CRafaUushEt0 jmDg== 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 i8si3525561otp.254.2020.02.12.02.13.38; Wed, 12 Feb 2020 02:13:51 -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 S1727904AbgBLKMc (ORCPT + 99 others); Wed, 12 Feb 2020 05:12:32 -0500 Received: from xavier.telenet-ops.be ([195.130.132.52]:40476 "EHLO xavier.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725710AbgBLKMc (ORCPT ); Wed, 12 Feb 2020 05:12:32 -0500 Received: from ramsan ([84.195.182.253]) by xavier.telenet-ops.be with bizsmtp id 1mCW220015USYZQ01mCWoT; Wed, 12 Feb 2020 11:12:30 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1j1p0Q-0001JH-06; Wed, 12 Feb 2020 11:12:30 +0100 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1j1p0P-0001j0-Ug; Wed, 12 Feb 2020 11:12:29 +0100 From: Geert Uytterhoeven To: Michal Simek Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] microblaze: Replace by Date: Wed, 12 Feb 2020 11:12:29 +0100 Message-Id: <20200212101229.6165-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 MicroBlaze platform 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/microblaze/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/microblaze/kernel/setup.c b/arch/microblaze/kernel/setup.c index 511c1ab7f57f573c..96dbfa12b14719bc 100644 --- a/arch/microblaze/kernel/setup.c +++ b/arch/microblaze/kernel/setup.c @@ -9,7 +9,7 @@ */ #include -#include +#include #include #include #include -- 2.17.1