ar71xx: on ar724x only reset the link status in the restart handler, the fast reset...
[openwrt.git] / target / linux / ar71xx / files / drivers / net / ag71xx / ag71xx_main.c
index ed9e7b9..ee76c9a 100644 (file)
@@ -795,6 +795,12 @@ static void ag71xx_restart_work_func(struct work_struct *work)
 {
        struct ag71xx *ag = container_of(work, struct ag71xx, restart_work);
 
+       if (ag71xx_get_pdata(ag)->is_ar724x) {
+               ag->link = 0;
+               ag71xx_link_adjust(ag);
+               return;
+       }
+
        ag71xx_stop(ag->dev);
        ag71xx_open(ag->dev);
 }