From ef7b17a2a11c03569652cc65b84d94311a551ec3 Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Thu, 26 May 2016 12:09:12 +0200 Subject: nvvar: add missing static inline stubs Signed-off-by: Lucas Stach Signed-off-by: Sascha Hauer --- include/globalvar.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/globalvar.h b/include/globalvar.h index e94e9ed6ee..5dfa371409 100644 --- a/include/globalvar.h +++ b/include/globalvar.h @@ -153,6 +153,18 @@ static inline int nvvar_load(void) return 0; } +static inline void nvvar_print(void) {} + +static inline int nvvar_add(const char *name, const char *value) +{ + return 0; +} + +static inline int nvvar_remove(const char *name) +{ + return 0; +} + #endif #endif /* __GLOBALVAR_H */ -- cgit v1.2.3