|
@@ -171,6 +171,7 @@ static int vexpress_config_populate(struct device_node *node)
|
|
{
|
|
{
|
|
struct device_node *bridge;
|
|
struct device_node *bridge;
|
|
struct device *parent;
|
|
struct device *parent;
|
|
|
|
+ int ret;
|
|
|
|
|
|
bridge = of_parse_phandle(node, "arm,vexpress,config-bridge", 0);
|
|
bridge = of_parse_phandle(node, "arm,vexpress,config-bridge", 0);
|
|
if (!bridge)
|
|
if (!bridge)
|
|
@@ -182,7 +183,11 @@ static int vexpress_config_populate(struct device_node *node)
|
|
if (WARN_ON(!parent))
|
|
if (WARN_ON(!parent))
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
|
|
|
|
- return of_platform_populate(node, NULL, NULL, parent);
|
|
|
|
|
|
+ ret = of_platform_populate(node, NULL, NULL, parent);
|
|
|
|
+
|
|
|
|
+ put_device(parent);
|
|
|
|
+
|
|
|
|
+ return ret;
|
|
}
|
|
}
|
|
|
|
|
|
static int __init vexpress_config_init(void)
|
|
static int __init vexpress_config_init(void)
|