ARM: OMAP2+: only search for GPMC DT child nodes on probe

The GPMC DT probe function use for_each_node_by_name() to search
child device nodes of the GPMC controller. But this function does
not use the GPMC device node as the root of the search and instead
search across the complete Device Tree.

This means that any device node on the DT that is using any of the
GPMC child nodes names searched for will be returned even if they
are not connected to the GPMC, making the gpmc_probe_xxx_child()
function to fail.

Fix this by using the GPMC device node as the search root so the
search will be restricted to its children.

Reported-by: Lars Poeschel <poeschel@lemonage.de>
Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
This commit is contained in:
Javier Martinez Canillas 2013-04-17 22:34:11 +02:00 коммит произвёл Jon Hunter
Родитель c059e0288c
Коммит f2b09f6704
1 изменённых файлов: 10 добавлений и 23 удалений

Просмотреть файл

@ -1520,32 +1520,19 @@ static int gpmc_probe_dt(struct platform_device *pdev)
return ret; return ret;
} }
for_each_node_by_name(child, "nand") { for_each_child_of_node(pdev->dev.of_node, child) {
ret = gpmc_probe_nand_child(pdev, child);
if (ret < 0) {
of_node_put(child);
return ret;
}
}
for_each_node_by_name(child, "onenand") { if (!child->name)
ret = gpmc_probe_onenand_child(pdev, child); continue;
if (ret < 0) {
of_node_put(child);
return ret;
}
}
for_each_node_by_name(child, "nor") { if (of_node_cmp(child->name, "nand") == 0)
ret = gpmc_probe_generic_child(pdev, child); ret = gpmc_probe_nand_child(pdev, child);
if (ret < 0) { else if (of_node_cmp(child->name, "onenand") == 0)
of_node_put(child); ret = gpmc_probe_onenand_child(pdev, child);
return ret; else if (of_node_cmp(child->name, "ethernet") == 0 ||
} of_node_cmp(child->name, "nor") == 0)
} ret = gpmc_probe_generic_child(pdev, child);
for_each_node_by_name(child, "ethernet") {
ret = gpmc_probe_generic_child(pdev, child);
if (ret < 0) { if (ret < 0) {
of_node_put(child); of_node_put(child);
return ret; return ret;