diff -r bc89e3fba1a5 -r 5fcbd29151d2 master/ethernet.c --- a/master/ethernet.c Tue Feb 13 13:36:31 2007 +0000 +++ b/master/ethernet.c Tue Feb 13 13:42:37 2007 +0000 @@ -161,7 +161,7 @@ void ec_eoe_clear(ec_eoe_t *eoe /**< EoE handler */) { - unregister_netdev(eoe->dev); + unregister_netdev(eoe->dev); // possibly calls close callback free_netdev(eoe->dev); // empty transmit queue @@ -648,11 +648,8 @@ eoe->opened = 0; ec_eoe_flush(eoe); EC_INFO("%s stopped.\n", dev->name); - if (!eoe->slave) - EC_WARN("Device %s is not coupled to any EoE slave!\n", dev->name); - else { + if (eoe->slave) ec_slave_request_state(eoe->slave, EC_SLAVE_STATE_PREOP); - } return 0; }