]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: mvebu/bubt: Fix warnings: unused variable 'secure_mode' and 'fuse_read_u64'...
authorPali Rohár <pali@kernel.org>
Mon, 20 Feb 2023 21:42:54 +0000 (22:42 +0100)
committerStefan Roese <sr@denx.de>
Wed, 1 Mar 2023 05:39:17 +0000 (06:39 +0100)
'secure_mode' and 'fuse_read_u64' are used only on A38x and A37xx.

Fixes: f7b0bbca2b62 ("cmd: mvebu/bubt: Check for A38x/A37xx OTP secure bits and secure boot")
Signed-off-by: Pali Rohár <pali@kernel.org>
cmd/mvebu/bubt.c

index 74ea037dda98b549bd0a29d3833149e3d5a2ae02..49797b23144b3bcac7ca269f137e84be0ab74a28 100644 (file)
@@ -984,7 +984,7 @@ static int check_image_header(void)
 }
 #endif
 
-#if defined(CONFIG_ARMADA_3700) || defined(CONFIG_ARMADA_32BIT)
+#if defined(CONFIG_ARMADA_3700) || defined(CONFIG_ARMADA_38X)
 static u64 fuse_read_u64(u32 bank)
 {
        u32 val[2];
@@ -1013,7 +1013,10 @@ static inline u8 maj3(u8 val)
 static int bubt_check_boot_mode(const struct bubt_dev *dst)
 {
 #if defined(CONFIG_ARMADA_3700) || defined(CONFIG_ARMADA_32BIT)
-       int mode, secure_mode;
+       int mode;
+#if defined(CONFIG_ARMADA_3700) || defined(CONFIG_ARMADA_38X)
+       int secure_mode;
+#endif
 #if defined(CONFIG_ARMADA_3700)
        const struct tim_boot_flash_sign *boot_modes = tim_boot_flash_signs;
        const struct common_tim_data *hdr =