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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 0328CC77B7A for ; Tue, 16 May 2023 15:58:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=XS7eXTHVF30ersIFajuWEQDy23XIHnzAQbF3PJo3qH8=; b=1xVBj+6bIi9u8+ Kd2sdXJO/WfCDqBeAK9R5saNESzmki4Va/QY+fLUBjEdRt75bnKCMbTqvRLogF9b2DOTqnHzwZ5m4 DSS7hBF1WJ1uMwHrFJLu383eOfCtMQI8bfbanBZt6WOsC086qn3zPwB4flfMJuNCRdhjZT+04vqny Q6LJyaedDAXX+ZoKJJcBItUFsUKhoLdHEYiwKBxgjr/wWmG+YoVqdOWkWq1sE8IT2b5bzFuuAB2Bh m346iDZprdWnj/9Jmhfe4sDnPYB6/85s/oobnGi3CkV2Sc68wWMjQcOKTPWB3xKXAOt+qVCR9qH4O u+KZhN8mzyKDvq3e1aUA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pyx4N-006Mnl-0e; Tue, 16 May 2023 15:58:35 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pyx4I-006MkW-0h for linux-arm-kernel@lists.infradead.org; Tue, 16 May 2023 15:58:31 +0000 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 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230516_085830_327542_42D49273 X-CRM114-Status: GOOD ( 17.45 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.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) | \ _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel