Message ID | 20250304-airoha-eth-fix-lan4-v1-1-832417da4bb5@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 35ea4f06fd33fc32f556a0c26d1d8340497fa7f8 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: airoha: Fix lan4 support in airoha_qdma_get_gdm_port() | expand |
On Tue, Mar 04, 2025 at 03:38:05PM +0100, Lorenzo Bianconi wrote: > EN7581 SoC supports lan{1,4} ports on MT7530 DSA switch. Fix lan4 > reported value in airoha_qdma_get_gdm_port routine. > > Fixes: 23020f0493270 ("net: airoha: Introduce ethernet support for EN7581 SoC") > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Reviewed-by: Simon Horman <horms@kernel.org>
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Tue, 04 Mar 2025 15:38:05 +0100 you wrote: > EN7581 SoC supports lan{1,4} ports on MT7530 DSA switch. Fix lan4 > reported value in airoha_qdma_get_gdm_port routine. > > Fixes: 23020f0493270 ("net: airoha: Introduce ethernet support for EN7581 SoC") > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> > --- > drivers/net/ethernet/airoha/airoha_eth.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > [...] Here is the summary with links: - [net-next] net: airoha: Fix lan4 support in airoha_qdma_get_gdm_port() https://git.kernel.org/netdev/net-next/c/35ea4f06fd33 You are awesome, thank you!
diff --git a/drivers/net/ethernet/airoha/airoha_eth.c b/drivers/net/ethernet/airoha/airoha_eth.c index ff837168845d6cacf97708b8b9462829162407bd..5355685a9731c01e74c5c11e7173078e08c6b044 100644 --- a/drivers/net/ethernet/airoha/airoha_eth.c +++ b/drivers/net/ethernet/airoha/airoha_eth.c @@ -594,7 +594,7 @@ static int airoha_qdma_get_gdm_port(struct airoha_eth *eth, sport = FIELD_GET(QDMA_ETH_RXMSG_SPORT_MASK, msg1); switch (sport) { - case 0x10 ... 0x13: + case 0x10 ... 0x14: port = 0; break; case 0x2 ... 0x4:
EN7581 SoC supports lan{1,4} ports on MT7530 DSA switch. Fix lan4 reported value in airoha_qdma_get_gdm_port routine. Fixes: 23020f0493270 ("net: airoha: Introduce ethernet support for EN7581 SoC") Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> --- drivers/net/ethernet/airoha/airoha_eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- base-commit: 188fa9b9e20a2579ed8f4088969158fb55059fa0 change-id: 20250304-airoha-eth-fix-lan4-5f576b7defea Best regards,