]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spl: bootcount: Move code out of header file
authorSimon Glass <sjg@chromium.org>
Thu, 14 Nov 2019 19:57:17 +0000 (12:57 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 2 Dec 2019 23:23:08 +0000 (18:23 -0500)
It is not good practice to write code in a header file. If it is included
multiple times then the code can cause duplicate functions.

Move the bootcount_store() and bootcount_load() functions into SPL.

Note: bootcount is a bit strange in that it uses driver model but does not
define proper drivers. This should be fixed.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
common/spl/spl.c
include/bootcount.h

index cc5507f7573d82908e9b07af3f2a37ada8d7e116..a2ef13a41c3c9ae066f0866eaed5043a04ce4443 100644 (file)
@@ -830,3 +830,14 @@ ulong spl_relocate_stack_gd(void)
        return 0;
 #endif
 }
+
+#if defined(CONFIG_BOOTCOUNT_LIMIT) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)
+void bootcount_store(ulong a)
+{
+}
+
+ulong bootcount_load(void)
+{
+       return 0;
+}
+#endif
index 8fa8cf82181a6b1a20b7a377f839e93689273fdd..a26a3852338e07a43aa8bdf24fc562ffd0322907 100644 (file)
@@ -127,10 +127,6 @@ static inline void bootcount_inc(void)
 #endif /* !CONFIG_SPL_BUILD */
 }
 
-#if defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_BOOTCOUNT_LIMIT)
-void bootcount_store(ulong a) {};
-ulong bootcount_load(void) { return 0; }
-#endif /* CONFIG_SPL_BUILD && !CONFIG_SPL_BOOTCOUNT_LIMIT */
 #else
 static inline int bootcount_error(void) { return 0; }
 static inline void bootcount_inc(void) {}