From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6854A3E63B7; Wed, 8 Jul 2026 09:10:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783501842; cv=none; b=oSmA1BokKEFnxHHMU4Fxun36GWq8PBKhF2Zo3dNsCnRdMmHe+ieVeukGfDwQY9ZPjpov277grBWxurOiG+UpnAlw1K+br7+sSn2IBZp7EkwxbZBS9UI0kt/419YBmYcxaGDCu669QNUFqE/mIjPbBJ0lTEU3/pmpM/WoEFPpnt4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783501842; c=relaxed/simple; bh=0sUL3+aJiUYmMDcQh9ThfNfCmQ/IiGTOA4cRVGsQcuE=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=h+pO3D2v4Rm32qcBP+nRz3XnUSQhI9f/KjgW6im23XjdR7fBQbVCvocTvq3JkJJ1cqUUE7NrUB41Rn18xPTyvf8oLYUWWItym0fe62SuTcHfZT7/6UlNwXcwVTcPQvvhP5yN7wK1PswPJKodShZ2jYwpVNLKghcztrNnnMt9PxQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=mVzIDkyV; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="mVzIDkyV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 452D21F000E9; Wed, 8 Jul 2026 09:10:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783501841; bh=AbHCrpgnhZAReBZ/2Y02VNZH638XGlqqfQepZimy0oQ=; h=Subject:From:Date:References:In-Reply-To:To:Cc; b=mVzIDkyV2CYGM9LAecPpz+jB6MW2r3IJF6gi3PMKHSKGW00fvPcT48/WFPJ80TXQ6 255etu1ZQL+5U8qrOw27R+kTYQpKUv/AE0+ORg62j+1GkzGCrmn9DdItn5I0fIrpcR pn5ZkTjfuox3em2We0+nBon9NPrWkEpFtuYrvT+Rp+MMWtjAyWK2ATslzA13oIezka Hu48ndtjnDVYdSjKlJSqousP0KBZTd0XnhhnsrE1IcvLxYfjgPUSJoKgqn0YczzzBS 04nNgydzbKyw12jcki/AgEui64+9TTwx9urI8rLIkX6dJ0gdRmWRW+CLPWzaB2dP6o QiKaGU3xdcYbw== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id D0D8F3926388; Wed, 8 Jul 2026 09:10:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH net-next 00/10] net: dsa: microchip: move non-common function out of ksz_common.c From: patchwork-bot+netdevbpf@kernel.org Message-Id: <178350182064.2389464.8671802680771875517.git-patchwork-notify@kernel.org> Date: Wed, 08 Jul 2026 09:10:20 +0000 References: <20260702-clean-ksz-4th-v1-0-93441e695fa4@bootlin.com> In-Reply-To: <20260702-clean-ksz-4th-v1-0-93441e695fa4@bootlin.com> To: Bastien Curutchet (Schneider Electric) Cc: woojung.huh@microchip.com, UNGLinuxDriver@microchip.com, andrew@lunn.ch, olteanv@gmail.com, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, linux@armlinux.org.uk, pascal.eberhard@se.com, miquel.raynal@bootlin.com, thomas.petazzoni@bootlin.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, vladimir.oltean@nxp.com Hello: This series was applied to netdev/net-next.git (main) by Paolo Abeni : On Thu, 02 Jul 2026 11:07:22 +0200 you wrote: > Hi all, > > This series continues the rework of the KSZ driver initiated by three > previous series (see [1], [2] & [3]). > > The KSZ driver handles more than 20 switches split in several families. > This was previously handled through a common set of dsa_switch_ops > operations that used device-specific ksz_dev_ops callbacks. The three > previous series have split this common struct dsa_switch_ops into 5 > to connect the ksz_dev_ops's implentations directly to the new > dsa_swicth ops. > > [...] Here is the summary with links: - [net-next,01/10] net: dsa: microchip: split ksz8_change_mtu() https://git.kernel.org/netdev/net-next/c/15604320877e - [net-next,02/10] net: dsa: microchip: split port_max_mtu() implementation https://git.kernel.org/netdev/net-next/c/18a856b23680 - [net-next,03/10] net: dsa: microchip: make ksz_is_port_mac_global_usable() static https://git.kernel.org/netdev/net-next/c/caf5d68b51e6 - [net-next,04/10] net: dsa: microchip: move ksz88xx stats handling in ksz8.c https://git.kernel.org/netdev/net-next/c/a7e806f11f37 - [net-next,05/10] net: dsa: microchip: move ksz_get_gbit() and ksz_get_xmii() to ksz9477.c https://git.kernel.org/netdev/net-next/c/7a83196e9012 - [net-next,06/10] net: dsa: microchip: move KSZ9477 errata handling to ksz9477.c https://git.kernel.org/netdev/net-next/c/ab4b571d44fb - [net-next,07/10] net: dsa: microchip: handle KSZ8-specific tc setup in ksz8.c https://git.kernel.org/netdev/net-next/c/610106257cd7 - [net-next,08/10] net: dsa: microchip: move ksz9477_set_default_prio_queue_mapping() to ksz9477.c https://git.kernel.org/netdev/net-next/c/e8de229a62ec - [net-next,09/10] net: dsa: microchip: rename ksz9477_drive_strength_write() https://git.kernel.org/netdev/net-next/c/da466bf62b01 - [net-next,10/10] net: dsa: microchip: move the drive strength config out of the common section https://git.kernel.org/netdev/net-next/c/90c676dd4bb6 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html