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 AB7B7C7EE2A for ; Tue, 16 May 2023 16:18:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229473AbjEPQSX (ORCPT ); Tue, 16 May 2023 12:18:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42878 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229449AbjEPQSW (ORCPT ); Tue, 16 May 2023 12:18:22 -0400 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AEED55596; Tue, 16 May 2023 09:18:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=k6pE6LQLvDW5mSH6Et4dw3uMNf89kWok94/55zOHmm4=; b=xXVTQL07bowUpiYYnlQODjugpM Wt/UYIQMdDgOVSrZPFnfejnxjYV63jlK0V+xrwBZZf92YrV4jMBs2RRF3zD8B+eR5xHYzmGOmmpEh mGmoadVPnz7tRi9UWKFeNpmirHXWvrSSgY1EQaHbD3SPpTc5Wo/3vNyWC84YT9qAu+Nk=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1pyxMr-00D2Xp-ET; Tue, 16 May 2023 18:17:41 +0200 Date: Tue, 16 May 2023 18:17:41 +0200 From: Andrew Lunn To: Arnd Bergmann Cc: soc@kernel.org, Arnd Bergmann , Russell King , Bartosz Golaszewski , Hartley Sweeten , Alexander Sverdlin , Andre Przywara , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Vladimir Zapolskiy , Aaro Koskinen , Janusz Krzysztofik , Tony Lindgren , 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, stable@vger.kernel.org Subject: Re: [PATCH 09/13] ARM: orion5x: fix d2net gpio initialization Message-ID: <3ddd6e7d-510e-4f2f-b21d-4e7eb1b75920@lunn.ch> References: <20230516153109.514251-1-arnd@kernel.org> <20230516153109.514251-10-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230516153109.514251-10-arnd@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org On Tue, May 16, 2023 at 05:31:05PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The DT version of this board has a custom file with the gpio > device. However, it does nothing because the d2net_init() > has no caller or prototype: > > arch/arm/mach-orion5x/board-d2net.c:101:13: error: no previous prototype for 'd2net_init' > > Call it from the board-dt file as intended. > > Fixes: 94b0bd366e36 ("ARM: orion5x: convert d2net to Device Tree") > Cc: stable@vger.kernel.org > Signed-off-by: Arnd Bergmann Reviewed-by: Andrew Lunn Andrew