ar71xx: enable the ip17xx PHY driver (fixes #5193, #8027), backport of r26670
[openwrt-10.03/.git] / package / broadcom-wl / src / nvram / nvram_stub.c
1 #include <stdlib.h>
2
3 int nvram_set(const char *name, const char *value)
4 {
5         return -1;
6 }
7
8 char *nvram_get(const char *name)
9 {
10         return NULL;
11 }
12
13 int nvram_unset(const char *name)
14 {
15         return -1;
16 }