From 3c4aecc859fcb7740cb8de40870c5fe78d09e68f Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Fri, 2 Jan 2026 01:24:42 -0800 Subject: [PATCH] cndm: Remove padding bug workaround Signed-off-by: Alex Forencich --- src/cndm/modules/cndm/cndm_tx.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/cndm/modules/cndm/cndm_tx.c b/src/cndm/modules/cndm/cndm_tx.c index d79875d..549b51f 100644 --- a/src/cndm/modules/cndm/cndm_tx.c +++ b/src/cndm/modules/cndm/cndm_tx.c @@ -111,10 +111,6 @@ int cndm_start_xmit(struct sk_buff *skb, struct net_device *ndev) netdev_dbg(ndev, "Got packet for TX"); - // TODO workaround for MAC padding bug - if (skb_put_padto(skb, 60)) - goto tx_drop; - if (skb->len < ETH_HLEN) { netdev_warn(ndev, "Dropping short frame"); goto tx_drop;