mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 21:54:37 +08:00
net: rtl8139: Consistently use rtl8139_rx_config
This string of macros is exactly the same thing as rtl8139_rx_config, so just use rtl8139_rx_config. No functional change. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
17dc95e527
commit
198e6b571b
@ -396,8 +396,8 @@ static void rtl_reset(struct eth_device *dev)
|
|||||||
/* Must enable Tx/Rx before setting transfer thresholds! */
|
/* Must enable Tx/Rx before setting transfer thresholds! */
|
||||||
outb(RTL_REG_CHIPCMD_CMDRXENB | RTL_REG_CHIPCMD_CMDTXENB,
|
outb(RTL_REG_CHIPCMD_CMDRXENB | RTL_REG_CHIPCMD_CMDTXENB,
|
||||||
ioaddr + RTL_REG_CHIPCMD);
|
ioaddr + RTL_REG_CHIPCMD);
|
||||||
outl((RX_FIFO_THRESH<<13) | (RX_BUF_LEN_IDX<<11) | (RX_DMA_BURST<<8),
|
/* accept no frames yet! */
|
||||||
ioaddr + RTL_REG_RXCONFIG); /* accept no frames yet! */
|
outl(rtl8139_rx_config, ioaddr + RTL_REG_RXCONFIG);
|
||||||
outl((TX_DMA_BURST<<8)|0x03000000, ioaddr + RTL_REG_TXCONFIG);
|
outl((TX_DMA_BURST<<8)|0x03000000, ioaddr + RTL_REG_TXCONFIG);
|
||||||
|
|
||||||
/* The Linux driver changes RTL_REG_CONFIG1 here to use a different LED pattern
|
/* The Linux driver changes RTL_REG_CONFIG1 here to use a different LED pattern
|
||||||
|
Loading…
Reference in New Issue
Block a user