]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of CMD_NET
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:36:35 +0000 (15:36 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:26 +0000 (16:32 -0500)
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_NET defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/arm/mach-rockchip/misc.c

index 87eebd9872def4575fbecd734328f899d1e51117..01aedadf2c6e45445d367fca8ad0956339410130 100644 (file)
@@ -23,7 +23,7 @@
 
 int rockchip_setup_macaddr(void)
 {
-#if CONFIG_IS_ENABLED(CMD_NET)
+#if IS_ENABLED(CONFIG_CMD_NET)
        int ret;
        const char *cpuid = env_get("cpuid#");
        u8 hash[SHA256_SUM_LEN];