From: Aleksander Jan Bajkowski Date: Tue, 9 Nov 2021 22:23:54 +0000 (+0100) Subject: net: ethernet: lantiq_etop: Fix compilation error X-Git-Tag: v5.16-rc1~50^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68eabc348148ae051631e8dab13c3b1a85c82896;p=thirdparty%2Fkernel%2Flinux.git net: ethernet: lantiq_etop: Fix compilation error This fixes the error detected when compiling the driver. Fixes: 14d4e308e0aa ("net: lantiq: configure the burst length in ethernet drivers") Reported-by: kernel test robot Signed-off-by: Aleksander Jan Bajkowski Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/lantiq_etop.c b/drivers/net/ethernet/lantiq_etop.c index 2258e3f191610..6433c909c6b26 100644 --- a/drivers/net/ethernet/lantiq_etop.c +++ b/drivers/net/ethernet/lantiq_etop.c @@ -262,7 +262,7 @@ ltq_etop_hw_init(struct net_device *dev) /* enable crc generation */ ltq_etop_w32(PPE32_CGEN, LQ_PPE32_ENET_MAC_CFG); - ltq_dma_init_port(DMA_PORT_ETOP, priv->tx_burst_len, rx_burst_len); + ltq_dma_init_port(DMA_PORT_ETOP, priv->tx_burst_len, priv->rx_burst_len); for (i = 0; i < MAX_DMA_CHAN; i++) { int irq = LTQ_DMA_CH0_INT + i;