9
0
Fork 0

nvvar: add static inline dummy for nvvar_save

Just as the other NVVAR functions, when support for NVVAR isn't
compiled in.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2016-12-20 10:33:36 +01:00 committed by Sascha Hauer
parent cce74dff55
commit 3f41339844
1 changed files with 5 additions and 0 deletions

View File

@ -116,6 +116,11 @@ static inline int nvvar_remove(const char *name)
return 0;
}
static inline int nvvar_save(void)
{
return 0;
}
static inline void dev_param_init_from_nv(struct device_d *dev, const char *name)
{
}