Minor: Removed warning when EoE interface is up upon master unloading.

This commit is contained in:
Florian Pose 2007-02-12 14:42:36 +00:00
parent 387b398591
commit 9a5fcf81f7
1 changed files with 2 additions and 5 deletions

View File

@ -161,7 +161,7 @@ int ec_eoe_init(ec_eoe_t *eoe /**< EoE handler */)
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 @@ int ec_eoedev_stop(struct net_device *dev /**< EoE net_device */)
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;
}