mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 16:10:58 +00: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
1 changed files with 2 additions and 2 deletions
|
@ -396,8 +396,8 @@ static void rtl_reset(struct eth_device *dev)
|
|||
/* Must enable Tx/Rx before setting transfer thresholds! */
|
||||
outb(RTL_REG_CHIPCMD_CMDRXENB | RTL_REG_CHIPCMD_CMDTXENB,
|
||||
ioaddr + RTL_REG_CHIPCMD);
|
||||
outl((RX_FIFO_THRESH<<13) | (RX_BUF_LEN_IDX<<11) | (RX_DMA_BURST<<8),
|
||||
ioaddr + RTL_REG_RXCONFIG); /* accept no frames yet! */
|
||||
/* accept no frames yet! */
|
||||
outl(rtl8139_rx_config, ioaddr + RTL_REG_RXCONFIG);
|
||||
outl((TX_DMA_BURST<<8)|0x03000000, ioaddr + RTL_REG_TXCONFIG);
|
||||
|
||||
/* The Linux driver changes RTL_REG_CONFIG1 here to use a different LED pattern
|
||||
|
|
Loading…
Reference in a new issue