powerpc/mpc8313erdb: fix kernel panic because mdio device is not probed

Probe the new mdio node added by b31a1d8b. Fix kernel panic problem when
gianfar driver wants to get the of_platform_device of that mdio.

Signed-off-by: Li Yang <leoli@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by Li Yang and committed by Kumar Gala 344b6287 6e115215

+2 -1
+1 -1
arch/powerpc/boot/dts/mpc8313erdb.dts
··· 185 185 cell-index = <0>; 186 186 device_type = "network"; 187 187 model = "eTSEC"; 188 - compatible = "gianfar", "simple-bus"; 188 + compatible = "gianfar"; 189 189 reg = <0x24000 0x1000>; 190 190 local-mac-address = [ 00 00 00 00 00 00 ]; 191 191 interrupts = <37 0x8 36 0x8 35 0x8>;
+1
arch/powerpc/platforms/83xx/mpc831x_rdb.c
··· 71 71 72 72 static struct of_device_id __initdata of_bus_ids[] = { 73 73 { .compatible = "simple-bus" }, 74 + { .compatible = "gianfar" }, 74 75 {}, 75 76 }; 76 77