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 167EFEB64DA for ; Sat, 24 Jun 2023 22:44:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229700AbjFXWk2 (ORCPT ); Sat, 24 Jun 2023 18:40:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44356 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229481AbjFXWk1 (ORCPT ); Sat, 24 Jun 2023 18:40:27 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E438C1706 for ; Sat, 24 Jun 2023 15:40:25 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 53C8F60A70 for ; Sat, 24 Jun 2023 22:40:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPS id 9878AC433C9; Sat, 24 Jun 2023 22:40:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1687646424; bh=wFuYPKBZDVE/KNCfDf5udJ5FGoqcIIHcICXY9FCaBa0=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=GQnPbwWsakuOPo9NzsCGnu7VNIBsah5Ar0vvOSOu4YvOtGm9lpi/EL4HqoankMgSk u53Ss4+2kPxA2IeJYK5BqFk3RcrMSdSEErTSz7iC3XPxgs6D9wzBy0ciln9FfI0Ex7 UjsjzMayscYiFKLujaUqU00GpN/41SCRrZVqm4Vvwv8DMe78lgJPO3upHOIschQx3t qJTdVgj2u5Evpw/u0rwZUNwhUn+fXGdRIE0xLreoBqUbCu1BaMjNdY3Ws2i9L2TR7z 89+Ho/l2s3/nanrku3QTTn/WZlQamw1sY2v//Cku+fxVTKTjds6CDQzl2EEeTzPk72 mjmW5S/7uKrNw== Received: from aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (localhost.localdomain [127.0.0.1]) by aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (Postfix) with ESMTP id 7C429C395C7; Sat, 24 Jun 2023 22:40:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH net-next v2 00/11] net: stmmac: introduce devres helpers for stmmac platform drivers From: patchwork-bot+netdevbpf@kernel.org Message-Id: <168764642450.414.12816371572473277561.git-patchwork-notify@kernel.org> Date: Sat, 24 Jun 2023 22:40:24 +0000 References: <20230623100417.93592-1-brgl@bgdev.pl> In-Reply-To: <20230623100417.93592-1-brgl@bgdev.pl> To: Bartosz Golaszewski Cc: peppe.cavallaro@st.com, alexandre.torgue@foss.st.com, joabreu@synopsys.com, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, mcoquelin.stm32@gmail.com, junxiao.chang@intel.com, vkoul@kernel.org, bhupesh.sharma@linaro.org, netdev@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, bartosz.golaszewski@linaro.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Fri, 23 Jun 2023 12:04:06 +0200 you wrote: > From: Bartosz Golaszewski > > The goal of this series is two-fold: to make the API for stmmac platforms more > logically correct (by providing functions that acquire resources with release > counterparts that undo only their actions and nothing more) and to provide > devres variants of commonly use registration functions that allows to > significantly simplify the platform drivers. > > [...] Here is the summary with links: - [net-next,v2,01/11] net: stmmac: platform: provide stmmac_pltfr_init() https://git.kernel.org/netdev/net-next/c/97117eb51ec8 - [net-next,v2,02/11] net: stmmac: dwmac-generic: use stmmac_pltfr_init() https://git.kernel.org/netdev/net-next/c/4450e7d4231a - [net-next,v2,03/11] net: stmmac: platform: provide stmmac_pltfr_exit() https://git.kernel.org/netdev/net-next/c/5b0acf8dd2c1 - [net-next,v2,04/11] net: stmmac: dwmac-generic: use stmmac_pltfr_exit() https://git.kernel.org/netdev/net-next/c/40db9f1ddfcc - [net-next,v2,05/11] net: stmmac: platform: provide stmmac_pltfr_probe() https://git.kernel.org/netdev/net-next/c/3d5bf75d76ea - [net-next,v2,06/11] net: stmmac: dwmac-generic: use stmmac_pltfr_probe() https://git.kernel.org/netdev/net-next/c/0a68a59493e0 - [net-next,v2,07/11] net: stmmac: platform: provide stmmac_pltfr_remove_no_dt() https://git.kernel.org/netdev/net-next/c/1be0c9d65e17 - [net-next,v2,08/11] net: stmmac: platform: provide devm_stmmac_probe_config_dt() https://git.kernel.org/netdev/net-next/c/d74065427374 - [net-next,v2,09/11] net: stmmac: dwmac-qco-ethqos: use devm_stmmac_probe_config_dt() https://git.kernel.org/netdev/net-next/c/061425d933ef - [net-next,v2,10/11] net: stmmac: platform: provide devm_stmmac_pltfr_probe() https://git.kernel.org/netdev/net-next/c/fc9ee2ac4f9c - [net-next,v2,11/11] net: stmmac: dwmac-qcom-ethqos: use devm_stmmac_pltfr_probe() https://git.kernel.org/netdev/net-next/c/4194f32a4b2b You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html