Skip to content

Commit

Permalink
api: fix build without CMD_NET support
Browse files Browse the repository at this point in the history
Provide stubs in case that no NET interface is supported.

Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
  • Loading branch information
jhofstee authored and trini committed Aug 21, 2014
1 parent 9518606 commit 11db3ab
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions api/api_net.c
Expand Up @@ -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)
{
Expand Down Expand Up @@ -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

0 comments on commit 11db3ab

Please sign in to comment.