broadcom-wl: add nvram stub to fix nas compile after the switch to unvram

SVN-Revision: 15439
This commit is contained in:
Felix Fietkau
2009-04-27 14:18:34 +00:00
parent d607443fdb
commit 7f8b55cec9
2 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
#include <stdlib.h>
int nvram_set(const char *name, const char *value)
{
return -1;
}
char *nvram_get(const char *name)
{
return NULL;
}
int nvram_unset(const char *name)
{
return -1;
}