Skip to content

Commit 1bdea6f

Browse files
bcchen28411kuba-moo
authored andcommitted
net: ethernet: mtk_eth_soc: fix typo for declaration MT7988 ESW capability
Since MTK_ESW_BIT is a bit number rather than a bitmap, it causes MTK_HAS_CAPS to produce incorrect results. This leads to the ETH driver not declaring MAC capabilities correctly for the MT7988 ESW. Fixes: 445eb64 ("net: ethernet: mtk_eth_soc: add basic support for MT7988 SoC") Signed-off-by: Bo-Cun Chen <bc-bocun.chen@mediatek.com> Signed-off-by: Daniel Golle <daniel@makrotopia.org> Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Link: https://patch.msgid.link/b8b37f409d1280fad9c4d32521e6207f63cd3213.1747110258.git.daniel@makrotopia.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 09e7636 commit 1bdea6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/net/ethernet/mediatek/mtk_eth_soc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4748,7 +4748,7 @@ static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
47484748
}
47494749

47504750
if (mtk_is_netsys_v3_or_greater(mac->hw) &&
4751-
MTK_HAS_CAPS(mac->hw->soc->caps, MTK_ESW_BIT) &&
4751+
MTK_HAS_CAPS(mac->hw->soc->caps, MTK_ESW) &&
47524752
id == MTK_GMAC1_ID) {
47534753
mac->phylink_config.mac_capabilities = MAC_ASYM_PAUSE |
47544754
MAC_SYM_PAUSE |

0 commit comments

Comments
 (0)