diff options
| author | David Lechner <[email protected]> | 2026-08-06 11:15:01 -0500 |
|---|---|---|
| committer | David Lechner <[email protected]> | 2026-08-24 18:04:28 -0500 |
| commit | 34b86a6741e7cd7ec83c9926bd8a81ddb3206079 (patch) | |
| tree | f3c6e03d0adf87e6e13b6c77c044885b599e9e5b | |
| parent | 66e793bc93738d32e9dd20bab37f5020724a4940 (diff) | |
net: dwc_eth_qos: add mt8366 support
Add a compatible string match for MT8366 targets.
Reviewed-by: Julien Stephan <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: David Lechner <[email protected]>
| -rw-r--r-- | drivers/net/dwc_eth_qos.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/dwc_eth_qos.c b/drivers/net/dwc_eth_qos.c index e7cf68d011c..bf590421324 100644 --- a/drivers/net/dwc_eth_qos.c +++ b/drivers/net/dwc_eth_qos.c @@ -1664,6 +1664,10 @@ static const struct udevice_id eqos_ids[] = { .compatible = "mediatek,mt8189-gmac", .data = (ulong)&eqos_mtk_config }, + { + .compatible = "mediatek,mt8366-gmac", + .data = (ulong)&eqos_mtk_config + }, #endif #if IS_ENABLED(CONFIG_DWC_ETH_QOS_SUNXI) { |
