We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec00e9 commit f1b4c7cCopy full SHA for f1b4c7c
drivers/ethernet/nxp_imx_netc/eth_nxp_imx_netc_priv.h
@@ -66,10 +66,10 @@
66
do { \
67
uint32_t id = 0x001100; \
68
\
69
- mac_addr[0] = FREESCALE_OUI_B0; \
70
- mac_addr[1] = FREESCALE_OUI_B1; \
71
/* Set MAC address locally administered bit (LAA) */ \
72
- mac_addr[2] = FREESCALE_OUI_B2 | 0x02; \
+ mac_addr[0] = FREESCALE_OUI_B0 | 0x02; \
+ mac_addr[1] = FREESCALE_OUI_B1; \
+ mac_addr[2] = FREESCALE_OUI_B2; \
73
mac_addr[3] = (id >> 16) & 0xff; \
74
mac_addr[4] = (id >> 8) & 0xff; \
75
mac_addr[5] = (id + n) & 0xff; \
0 commit comments