From: Grant Likely Date: Fri, 27 Feb 2009 06:19:36 +0000 (-0700) Subject: powerpc/5200: Add 'simple-bus' to the of_platform probe list. X-Git-Tag: upstream/snapshot3+hdmi~19882^2~60^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aafbf16b89c6888add3ea22fde1b5ac3f5aaf947;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 --- diff --git a/arch/powerpc/platforms/52xx/mpc52xx_common.c b/arch/powerpc/platforms/52xx/mpc52xx_common.c index 98367a0..e9d2cf6 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 */ {}