aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mediatek/patches-4.19/0002-eth-fix-dsa-support.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/mediatek/patches-4.19/0002-eth-fix-dsa-support.patch')
-rw-r--r--target/linux/mediatek/patches-4.19/0002-eth-fix-dsa-support.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/target/linux/mediatek/patches-4.19/0002-eth-fix-dsa-support.patch b/target/linux/mediatek/patches-4.19/0002-eth-fix-dsa-support.patch
deleted file mode 100644
index 6c90222517..0000000000
--- a/target/linux/mediatek/patches-4.19/0002-eth-fix-dsa-support.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
-+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
-@@ -999,11 +999,6 @@ static int mtk_poll_rx(struct napi_struc
- if (!(trxd.rxd2 & RX_DMA_DONE))
- break;
-
-- /* find out which mac the packet come from. values start at 1 */
--#if defined(CONFIG_NET_DSA)
-- mac = (trxd.rxd4 >> 22) & 0x1;
-- mac = (mac + 1) % 2;
--#else
- mac = (trxd.rxd4 >> RX_DMA_FPORT_SHIFT) &
- RX_DMA_FPORT_MASK;
- /* From QDMA(5). This is a external interface case of HWNAT.
-@@ -1017,7 +1012,7 @@ static int mtk_poll_rx(struct napi_struc
- mac = 0;
- else
- mac--;
--#endif
-+
- if (unlikely(mac < 0 || mac >= MTK_MAC_COUNT ||
- !eth->netdev[mac]))
- goto release_desc;
-@@ -2030,10 +2025,6 @@ static int mtk_hw_init(struct mtk_eth *e
- /* Disable RX VLan Offloading */
- mtk_w32(eth, 0, MTK_CDMP_EG_CTRL);
-
--#if defined(CONFIG_NET_DSA)
-- mtk_w32(eth, 0x81000001, MTK_CDMP_IG_CTRL);
--#endif
--
- mtk_w32(eth, 0x8f0f8f0f, MTK_PDMA_DELAY_INT);
- mtk_w32(eth, 0x8f0f8f0f, MTK_QDMA_DELAY_INT);
-