Commit ff70063c authored by Patrick Mochel's avatar Patrick Mochel

device model: Use driver_for_each_dev to unbind drivers from its devices (now...

device model: Use driver_for_each_dev to unbind drivers from its devices (now that it's implemented)
parent a1ee9a35
......@@ -134,7 +134,7 @@ static int do_driver_unbind(struct device * dev, void * data)
void driver_unbind(struct device_driver * drv)
{
// driver_for_each_dev(drv,drv,do_driver_unbind);
driver_for_each_dev(drv,drv,do_driver_unbind);
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment