powerpc/mpc832x_rdb: fix swapped ethernet ids

ethernet0 (called FSL UEC0 in U-Boot) should be enet1 (UCC3/eth1), and
ethernet1 should be enet0 (UCC2/eth0), to be consistent with U-Boot so
that the interfaces do not swap addresses when control passes from
U-Boot to the kernel.

Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
Acked-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by Michael Barkowski and committed by Kumar Gala e871809c 06597aa9

+2 -2
+2 -2
arch/powerpc/boot/dts/mpc832x_rdb.dts
··· 18 #size-cells = <1>; 19 20 aliases { 21 - ethernet0 = &enet0; 22 - ethernet1 = &enet1; 23 serial0 = &serial0; 24 serial1 = &serial1; 25 pci0 = &pci0;
··· 18 #size-cells = <1>; 19 20 aliases { 21 + ethernet0 = &enet1; 22 + ethernet1 = &enet0; 23 serial0 = &serial0; 24 serial1 = &serial1; 25 pci0 = &pci0;