Skip to content

Commit

Permalink
powerpc/mpc832x_rdb: fix swapped ethernet ids
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Michael Barkowski authored and Kumar Gala committed Nov 19, 2008
1 parent 06597aa commit e871809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/boot/dts/mpc832x_rdb.dts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#size-cells = <1>;

aliases {
ethernet0 = &enet0;
ethernet1 = &enet1;
ethernet0 = &enet1;
ethernet1 = &enet0;
serial0 = &serial0;
serial1 = &serial1;
pci0 = &pci0;
Expand Down

0 comments on commit e871809

Please sign in to comment.