aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/52xx/mpc52xx_common.c
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2009-02-26 23:19:36 -0700
committerGrant Likely <grant.likely@secretlab.ca>2009-02-26 23:19:36 -0700
commitaafbf16b89c6888add3ea22fde1b5ac3f5aaf947 (patch)
tree73e3b3ba50677ee06fac7f83bf5974d896fccf74 /arch/powerpc/platforms/52xx/mpc52xx_common.c
parentpowerpc/5200: On the digsy-mtc, configure PSC4 and PSC5 as UARTs (diff)
downloadlinux-dev-aafbf16b89c6888add3ea22fde1b5ac3f5aaf947.tar.xz
linux-dev-aafbf16b89c6888add3ea22fde1b5ac3f5aaf947.zip
powerpc/5200: Add 'simple-bus' to the of_platform probe list.
To better match the ePAPR specification, device nodes which claim "simple-bus" compatibility should be probed by default. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to '')
-rw-r--r--arch/powerpc/platforms/52xx/mpc52xx_common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/52xx/mpc52xx_common.c b/arch/powerpc/platforms/52xx/mpc52xx_common.c
index 98367a0255f3..e9d2cf632eeb 100644
--- a/arch/powerpc/platforms/52xx/mpc52xx_common.c
+++ b/arch/powerpc/platforms/52xx/mpc52xx_common.c
@@ -28,9 +28,10 @@ static struct of_device_id mpc52xx_xlb_ids[] __initdata = {
static struct of_device_id mpc52xx_bus_ids[] __initdata = {
{ .compatible = "fsl,mpc5200-immr", },
{ .compatible = "fsl,mpc5200b-immr", },
- { .compatible = "fsl,lpb", },
+ { .compatible = "simple-bus", },
/* depreciated matches; shouldn't be used in new device trees */
+ { .compatible = "fsl,lpb", },
{ .type = "builtin", .compatible = "mpc5200", }, /* efika */
{ .type = "soc", .compatible = "mpc5200", }, /* lite5200 */
{}