|
@@ -700,6 +700,7 @@ static int __init mvebu_mbus_common_init(struct mvebu_mbus_state *mbus,
|
|
|
phys_addr_t sdramwins_phys_base,
|
|
|
size_t sdramwins_size)
|
|
|
{
|
|
|
+ struct device_node *np;
|
|
|
int win;
|
|
|
|
|
|
mbus->mbuswins_base = ioremap(mbuswins_phys_base, mbuswins_size);
|
|
@@ -712,8 +713,11 @@ static int __init mvebu_mbus_common_init(struct mvebu_mbus_state *mbus,
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
|
|
|
- if (of_find_compatible_node(NULL, NULL, "marvell,coherency-fabric"))
|
|
|
+ np = of_find_compatible_node(NULL, NULL, "marvell,coherency-fabric");
|
|
|
+ if (np) {
|
|
|
mbus->hw_io_coherency = 1;
|
|
|
+ of_node_put(np);
|
|
|
+ }
|
|
|
|
|
|
for (win = 0; win < mbus->soc->num_wins; win++)
|
|
|
mvebu_mbus_disable_window(mbus, win);
|