]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
memory: pl172: fix modular build
authorJoachim Eastwood <manabian@gmail.com>
Wed, 22 Jul 2015 22:10:37 +0000 (00:10 +0200)
committerOlof Johansson <olof@lixom.net>
Wed, 22 Jul 2015 23:10:09 +0000 (16:10 -0700)
Building pl172 as a module fails with:
> ERROR: "of_default_bus_match_table" [drivers/memory/pl172.ko] undefined!

Because the symbol of_default_bus_match_table isn't exported by the OF
core code so can't be referenced from modules. Fix this by removing
the usage of of_default_bus_match_table for now. The side effect of
this is that child nodes can't use "simple-bus" or "simple-mfd".

Reported-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
drivers/memory/pl172.c

index 3a8e57ee96f0bc7cafce4e3e5c01f10b670052a8..b2ef6072fbf41193d636ff88415ee033e42021aa 100644 (file)
@@ -255,8 +255,7 @@ static int pl172_probe(struct amba_device *adev, const struct amba_id *id)
                if (ret)
                        continue;
 
-               of_platform_populate(child_np, of_default_bus_match_table,
-                                    NULL, dev);
+               of_platform_populate(child_np, NULL, NULL, dev);
        }
 
        return 0;