X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=api%2Fapi_net.c;h=cd80ea509a0fa9ad5ba90e1850cd33adc5fbd162;hb=6000992e265f507a18b0dcbcf2a89179822b42c4;hp=9611ab0dda960f6574c4cd213551c4fda4ab7a4b;hpb=8d79953d03e6c5b24215609997dafe4daa623cd6;p=u-boot diff --git a/api/api_net.c b/api/api_net.c index 9611ab0dda..cd80ea509a 100644 --- a/api/api_net.c +++ b/api/api_net.c @@ -24,9 +24,6 @@ */ #include - -#if defined(CONFIG_API) - #include #include #include @@ -37,10 +34,6 @@ DECLARE_GLOBAL_DATA_PTR; #define DEBUG #undef DEBUG -#if !defined(CONFIG_NET_MULTI) -#error "API/net is currently only available for platforms with CONFIG_NET_MULTI" -#endif - #ifdef DEBUG #define debugf(fmt, args...) do { printf("%s(): ", __func__); printf(fmt, ##args); } while (0) #else @@ -109,5 +102,3 @@ int dev_read_net(void *cookie, void *buf, int len) return eth_receive(buf, len); } - -#endif /* CONFIG_API */