]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL uses of SIFIVE_OTP
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:40:47 +0000 (15:40 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000 (07:41 -0500)
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_SIFIVE_OTP defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
board/sifive/unleashed/unleashed.c

index f8aad862c6d5263e320d92f83d95eb677e7afc07..b6ab06a08fb4a0b3bf45e4993d2037aa0a03b81d 100644 (file)
@@ -27,7 +27,7 @@
 
 #ifdef CONFIG_MISC_INIT_R
 
-#if CONFIG_IS_ENABLED(SIFIVE_OTP)
+#if IS_ENABLED(CONFIG_SIFIVE_OTP)
 static u32 otp_read_serialnum(struct udevice *dev)
 {
        int ret;
@@ -53,7 +53,7 @@ static u32 fu540_read_serialnum(void)
 {
        u32 serial = ERROR_READING_SERIAL_NUMBER;
 
-#if CONFIG_IS_ENABLED(SIFIVE_OTP)
+#if IS_ENABLED(CONFIG_SIFIVE_OTP)
        struct udevice *dev;
        int ret;