From: Grant Likely Date: Sat, 22 Mar 2008 03:25:15 +0000 (+1100) Subject: [POWERPC] mpc5200: Fix incorrect compatible string for the mdio node X-Git-Tag: v3.12-rc1~22243^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5492a7e4cba8e38419d489f0865de0a67c737e8a;p=kernel%2Fkernel-generic.git [POWERPC] mpc5200: Fix incorrect compatible string for the mdio node The MDIO node in the lite5200b.dts file needs to also claim compatibility with the older mpc5200 chip. Otherwise the driver won't find the device. Signed-off-by: Grant Likely Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/boot/dts/lite5200b.dts b/arch/powerpc/boot/dts/lite5200b.dts index 571ba02..2e9bc39 100644 --- a/arch/powerpc/boot/dts/lite5200b.dts +++ b/arch/powerpc/boot/dts/lite5200b.dts @@ -270,7 +270,7 @@ mdio@3000 { #address-cells = <1>; #size-cells = <0>; - compatible = "fsl,mpc5200b-mdio"; + compatible = "fsl,mpc5200b-mdio", "fsl,mpc5200-mdio"; reg = <3000 400>; // fec range, since we need to setup fec interrupts interrupts = <2 5 0>; // these are for "mii command finished", not link changes & co. interrupt-parent = <&mpc5200_pic>;