]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
api: fix build without CMD_NET support
authorJeroen Hofstee <jeroen@myspectrum.nl>
Sat, 9 Aug 2014 22:30:55 +0000 (00:30 +0200)
committerTom Rini <trini@ti.com>
Thu, 21 Aug 2014 16:01:29 +0000 (12:01 -0400)
Provide stubs in case that no NET interface is supported.

Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
api/api_net.c

index 3f52d71171526aeec17fd11aff26f5fef4612849..7b3805e8fdbec822a38739074d107857112d86ee 100644 (file)
@@ -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