Commit f35ce67f authored by Patrick Mochel's avatar Patrick Mochel

driver model: keep reference to device during device_add().

parent 95ca3c33
......@@ -168,7 +168,8 @@ int device_add(struct device *dev)
{
struct device * parent;
int error;
dev = get_device(dev);
if (!dev || !strlen(dev->bus_id))
return -EINVAL;
......@@ -208,6 +209,7 @@ int device_add(struct device *dev)
register_done:
if (error && parent)
put_device(parent);
put_device(dev);
return error;
}
......
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