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>
        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;
 
 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;