mirror of https://gitee.com/openkylin/linux.git
r8169: remove RTL_EVENT_NAPI constants
These constants are used in one place only, so we can remove them and use the values directly. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
68e2617acf
commit
2045e158fc
|
@ -1308,10 +1308,6 @@ static void rtl_irq_disable(struct rtl8169_private *tp)
|
|||
tp->irq_enabled = 0;
|
||||
}
|
||||
|
||||
#define RTL_EVENT_NAPI_RX (RxOK | RxErr)
|
||||
#define RTL_EVENT_NAPI_TX (TxOK | TxErr)
|
||||
#define RTL_EVENT_NAPI (RTL_EVENT_NAPI_RX | RTL_EVENT_NAPI_TX)
|
||||
|
||||
static void rtl_irq_enable(struct rtl8169_private *tp)
|
||||
{
|
||||
tp->irq_enabled = 1;
|
||||
|
@ -5113,7 +5109,7 @@ static const struct net_device_ops rtl_netdev_ops = {
|
|||
|
||||
static void rtl_set_irq_mask(struct rtl8169_private *tp)
|
||||
{
|
||||
tp->irq_mask = RTL_EVENT_NAPI | LinkChg;
|
||||
tp->irq_mask = RxOK | RxErr | TxOK | TxErr | LinkChg;
|
||||
|
||||
if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
|
||||
tp->irq_mask |= SYSErr | RxOverflow | RxFIFOOver;
|
||||
|
|
Loading…
Reference in New Issue