From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1884AC77B7A for ; Tue, 16 May 2023 15:58:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234204AbjEPP61 (ORCPT ); Tue, 16 May 2023 11:58:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53606 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234044AbjEPP60 (ORCPT ); Tue, 16 May 2023 11:58:26 -0400 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 4DE0140F5; Tue, 16 May 2023 08:58:25 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 5D7D01FB; Tue, 16 May 2023 08:59:09 -0700 (PDT) Received: from donnerap.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 8C9CB3F7BD; Tue, 16 May 2023 08:58:20 -0700 (PDT) Date: Tue, 16 May 2023 16:58:17 +0100 From: Andre Przywara To: Arnd Bergmann Cc: soc@kernel.org, Arnd Bergmann , Russell King , Bartosz Golaszewski , Hartley Sweeten , Alexander Sverdlin , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Vladimir Zapolskiy , Aaro Koskinen , Janusz Krzysztofik , Tony Lindgren , Andrew Lunn , Sebastian Hesselbarth , Gregory Clement , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Viresh Kumar , Shiraz Hashim , Sudeep Holla , Lorenzo Pieralisi , Linus Walleij , Michael Turquette , Stephen Boyd , Greg Kroah-Hartman , Alan Stern , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux-clk@vger.kernel.org, linux-usb@vger.kernel.org Subject: Re: [PATCH 03/13] ARM: highbank: add missing include Message-ID: <20230516165817.1c9923d3@donnerap.cambridge.arm.com> In-Reply-To: <20230516153109.514251-4-arnd@kernel.org> References: <20230516153109.514251-1-arnd@kernel.org> <20230516153109.514251-4-arnd@kernel.org> Organization: ARM X-Mailer: Claws Mail 3.18.0 (GTK+ 2.24.32; aarch64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org On Tue, 16 May 2023 17:30:59 +0200 Arnd Bergmann wrote: > From: Arnd Bergmann > > highbank_pm_init() is declared in core.h this is not included in the > file that defines it. > > arch/arm/mach-highbank/pm.c:43:13: error: no previous prototype for 'highbank_pm_init' > > Signed-off-by: Arnd Bergmann Acked-by: Andre Przywara Cheers, Andre > --- > arch/arm/mach-highbank/pm.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/mach-highbank/pm.c b/arch/arm/mach-highbank/pm.c > index 561941baeda9..3fdbdb83113b 100644 > --- a/arch/arm/mach-highbank/pm.c > +++ b/arch/arm/mach-highbank/pm.c > @@ -12,6 +12,8 @@ > > #include > > +#include "core.h" > + > #define HIGHBANK_SUSPEND_PARAM \ > ((0 << PSCI_0_2_POWER_STATE_ID_SHIFT) | \ > (1 << PSCI_0_2_POWER_STATE_AFFL_SHIFT) | \