Fix typo that was caused by the same feature being split in to 2 different
configuration options. Replace CONFIG_USBNET_DEVADDR with
CONFIG_USBNET_DEV_ADDR
Signed-off-by: Ignacio Zamora <nachopitt@gmail.com>
endchoice
-config USBNET_DEVADDR
+config USBNET_DEV_ADDR
string "USB Gadget Ethernet device mac address"
default "de:ad:be:ef:00:01"
help
priv->netdev = dev;
l_priv = priv;
- get_ether_addr(CONFIG_USBNET_DEVADDR, pdata->enetaddr);
+ get_ether_addr(CONFIG_USBNET_DEV_ADDR, pdata->enetaddr);
eth_env_set_enetaddr("usbnet_devaddr", pdata->enetaddr);
return 0;
/* USB Device Firmware Update support */
#define DFU_DEFAULT_POLL_TIMEOUT 300
-#define CONFIG_USBNET_DEV_ADDR "de:ad:be:af:00:01"
-
/* Environment variable name to represent HAB enable state */
#define HAB_ENABLED_ENVNAME "hab_enabled"