From 1097dfd5a351f9131467c7abece2a90ec6e014ed Mon Sep 17 00:00:00 2001 From: Marcel Reichmuth Date: Tue, 5 Jul 2022 15:56:23 +0200 Subject: [PATCH] FIX: [hw29] correct mac address assignment BugzId: 78538 --- board/nm/hw29/board.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/board/nm/hw29/board.c b/board/nm/hw29/board.c index ce22b7c994..9d1b65f08c 100644 --- a/board/nm/hw29/board.c +++ b/board/nm/hw29/board.c @@ -701,9 +701,8 @@ int board_late_init(void) set_devicetree_name(); - set_mac_address(0, 0); - set_mac_address(1, 1); - set_mac_address(2, 2); + set_mac_address(2, 0); + set_mac_address(0, 1); /* Take phy out of reset after FPGA was loaded */ gpio_set_value(29, 1);