diff options
author | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-09-07 07:50:26 -0500 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2007-09-07 07:50:26 -0500 |
commit | 1f6e57952180cd54e245241b74f4b9cb10c24f98 (patch) | |
tree | 4959c6f8c6d96ff4735a497b6144252bc70e3fe6 /arch/powerpc/platforms/44x | |
parent | c9c6b744d8a2a95ef6d5c8389964df5148e3102a (diff) | |
download | talos-op-linux-1f6e57952180cd54e245241b74f4b9cb10c24f98.tar.gz talos-op-linux-1f6e57952180cd54e245241b74f4b9cb10c24f98.zip |
[POWERPC] Fix bus probe on Bamboo board
Commit 804ace8881d21 changed the behavior of how compatible nodes are found.
This highlighted a bug on the Bamboo board where it wasn't probing the bus
specified in the DTS file. We fix it by being explicit about which bus to
probe.
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Acked-by: David Gibson <david@gibson.dropbvear.id.au>
Diffstat (limited to 'arch/powerpc/platforms/44x')
-rw-r--r-- | arch/powerpc/platforms/44x/bamboo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/44x/bamboo.c b/arch/powerpc/platforms/44x/bamboo.c index 5522f1f9642e..9bc45dea078f 100644 --- a/arch/powerpc/platforms/44x/bamboo.c +++ b/arch/powerpc/platforms/44x/bamboo.c @@ -23,7 +23,7 @@ #include "44x.h" static struct of_device_id bamboo_of_bus[] = { - { .compatible = "ibm,plb", }, + { .compatible = "ibm,plb4", }, { .compatible = "ibm,opb", }, { .compatible = "ibm,ebc", }, {}, |