diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-08-10 00:30:55 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-21 12:01:29 -0400 |
commit | 11db3abe6609e08e2df4ecc9353d2c0a2b061be2 (patch) | |
tree | f1635c233e26c489ac9eba9dc5bad005f78ac608 /api | |
parent | 951860634fdb557bbb58e0f99215391bc0c29779 (diff) |
api: fix build without CMD_NET support
Provide stubs in case that no NET interface is supported.
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'api')
-rw-r--r-- | api/api_net.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/api/api_net.c b/api/api_net.c index 3f52d711715..7b3805e8fdb 100644 --- a/api/api_net.c +++ b/api/api_net.c @@ -25,6 +25,7 @@ DECLARE_GLOBAL_DATA_PTR; #define errf(fmt, args...) do { printf("ERROR @ %s(): ", __func__); printf(fmt, ##args); } while (0) +#ifdef CONFIG_CMD_NET static int dev_valid_net(void *cookie) { @@ -85,3 +86,32 @@ int dev_read_net(void *cookie, void *buf, int len) return eth_receive(buf, len); } + +#else + +int dev_open_net(void *cookie) +{ + return API_ENODEV; +} + +int dev_close_net(void *cookie) +{ + return API_ENODEV; +} + +int dev_enum_net(struct device_info *di) +{ + return 0; +} + +int dev_write_net(void *cookie, void *buf, int len) +{ + return API_ENODEV; +} + +int dev_read_net(void *cookie, void *buf, int len) +{ + return API_ENODEV; +} + +#endif |