]> git.ipfire.org Git - people/ms/u-boot.git/commit
env_callback.h: spl: mark callback as maybe_unused
authorJeroen Hofstee <jeroen@myspectrum.nl>
Thu, 10 Jul 2014 18:38:35 +0000 (20:38 +0200)
committerTom Rini <trini@ti.com>
Fri, 18 Jul 2014 21:53:23 +0000 (17:53 -0400)
commit3ea664c7c339a788341b47f1eb0aa98eee18a721
tree48b90c958bb8dae9693451ce1c5f498bb65f7cae
parent6b13f0c050c787012edd9edb61d7e58798754aa8
env_callback.h: spl: mark callback as maybe_unused

When static inline is used in a header file the function
should preferably be inlined and if not possible made a
static function. When declared inside a c file there is a
static function, which might be inlined. Since SPL uses a
define to declare the static inline it becomes part of the
c file although it is declared in a header and clang will
warn that you have introduced unused static functions. Add
maybe_unused to prevent such warnings.

Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
include/env_callback.h