zephyr/net/ip/net_driver_ethernet.h
Jukka Rissanen 2272312b8d net: Refactor code to use new generic net_buf API
Change-Id: Id008bbf43062ca0641a76edaabef47c650287444
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2016-02-05 20:24:46 -05:00

17 lines
352 B
C

#include <net/ip_buf.h>
#ifdef CONFIG_ETHERNET
typedef int (*ethernet_tx_callback)(struct net_buf *buf);
void net_driver_ethernet_register_tx(ethernet_tx_callback cb);
bool net_driver_ethernet_is_opened(void);
void net_driver_ethernet_recv(struct net_buf *buf);
int net_driver_ethernet_init(void);
#else
#define net_driver_ethernet_init()
#endif