#define EVENT_RX_HALT                  1
 #define EVENT_RX_MEMORY                        2
 #define EVENT_STS_SPLIT                        3
-#define EVENT_LINK_RESET               4
+#define EVENT_PHY_INT_ACK              4
 #define EVENT_RX_PAUSED                        5
 #define EVENT_DEV_WAKING               6
 #define EVENT_DEV_ASLEEP               7
 
        if (intdata & INT_ENP_PHY_INT) {
                netif_dbg(dev, link, dev->net, "PHY INTR: 0x%08x\n", intdata);
-               lan78xx_defer_kevent(dev, EVENT_LINK_RESET);
+               lan78xx_defer_kevent(dev, EVENT_PHY_INT_ACK);
 
                if (dev->domain_data.phyirq > 0)
                        generic_handle_irq_safe(dev->domain_data.phyirq);
         */
        clear_bit(EVENT_TX_HALT, &dev->flags);
        clear_bit(EVENT_RX_HALT, &dev->flags);
-       clear_bit(EVENT_LINK_RESET, &dev->flags);
+       clear_bit(EVENT_PHY_INT_ACK, &dev->flags);
        clear_bit(EVENT_STAT_UPDATE, &dev->flags);
 
        cancel_delayed_work_sync(&dev->wq);
                }
        }
 
-       if (test_bit(EVENT_LINK_RESET, &dev->flags)) {
+       if (test_bit(EVENT_PHY_INT_ACK, &dev->flags)) {
                int ret = 0;
 
-               clear_bit(EVENT_LINK_RESET, &dev->flags);
+               clear_bit(EVENT_PHY_INT_ACK, &dev->flags);
                ret = lan78xx_phy_int_ack(dev);
                if (ret)
                        netdev_info(dev->net, "PHY INT ack failed (%pe)\n",