Master workqueue replaced with kernel thread.

This commit is contained in:
Florian Pose
2007-01-10 10:45:57 +00:00
parent 81acf0c368
commit ea7e0ca982
3 changed files with 89 additions and 54 deletions
+5 -1
View File
@@ -372,7 +372,11 @@ int ecdev_open(ec_device_t *device /**< EtherCAT device */)
return -1;
}
ec_master_enter_idle_mode(device->master);
if (ec_master_enter_idle_mode(device->master)) {
EC_ERR("Failed to enter idle mode!\n");
return -1;
}
return 0;
}