]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/xilinx/xilinx_enet/emac_adapter.c
rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
[people/ms/u-boot.git] / board / xilinx / xilinx_enet / emac_adapter.c
index d3403038e65e84a1375e68eed09f6ab109d4ea3f..0b100d215c70b7e15a8174620fa1ead9a1f8795b 100644 (file)
@@ -56,7 +56,7 @@ static XEmac Emac;
 static char etherrxbuff[PKTSIZE_ALIGN];        /* Receive buffer */
 
 /* hardcoded MAC address for the Xilinx EMAC Core when env is nowhere*/
-#ifdef CFG_ENV_IS_NOWHERE
+#ifdef CONFIG_ENV_IS_NOWHERE
 static u8 EMACAddr[ENET_ADDR_LENGTH] = { 0x00, 0x0a, 0x35, 0x00, 0x22, 0x01 };
 #endif
 
@@ -87,7 +87,7 @@ eth_init(bd_t * bis)
        /* make sure the Emac is stopped before it is started */
        (void) XEmac_Stop(&Emac);
 
-#ifdef CFG_ENV_IS_NOWHERE
+#ifdef CONFIG_ENV_IS_NOWHERE
        memcpy(bis->bi_enetaddr, EMACAddr, 6);
 #endif