]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
env: don't generate callback list entries for SPL
authorScott Wood <scottwood@freescale.com>
Thu, 20 Dec 2012 11:51:05 +0000 (11:51 +0000)
committerTom Rini <trini@ti.com>
Sat, 22 Dec 2012 12:57:16 +0000 (05:57 -0700)
SPL doesn't write to the environment.  These list entries prevent the
functions from being garbage-collected, even though nothing will look at
the list.  This caused several SPL builds (e.g.  P2020RDB-PC_NAND) to
break due to size limitations and/or unresolved symbols.

A static inline function is used to provide a context in which we
can consume the callback, and thus avoid unused function warnings.

Signed-off-by: Scott Wood <scottwood@freescale.com>
Acked-by: Joe Hershberger <joe.hershberger@gmail.com>
Acked-by: Kim Phillips <kim.phillips@freescale.com>
include/env_callback.h

index 47fdc6fa9103e3dec208dc3311f45dde08ad8d8e..c583120c1c4aea220389cbd3eedfb515a2fabdea 100644 (file)
@@ -68,8 +68,16 @@ void env_callback_init(ENTRY *var_entry);
  * when associated through the ".callbacks" environment variable, the callback
  * will be executed any time the variable is inserted, overwritten, or deleted.
  */
+#ifdef CONFIG_SPL_BUILD
+#define U_BOOT_ENV_CALLBACK(name, callback) \
+       static inline void _u_boot_env_noop_##name(void) \
+       { \
+               (void)callback; \
+       }
+#else
 #define U_BOOT_ENV_CALLBACK(name, callback) \
        ll_entry_declare(struct env_clbk_tbl, name, env_clbk, env_clbk) = \
        {#name, callback}
+#endif
 
 #endif /* __ENV_CALLBACK_H__ */