gnrc_netif: remove unused event_netdev_t struct

This commit is contained in:
Francisco Acosta 2020-10-14 14:46:35 +02:00
parent 632a3613b5
commit 05b089b3c4

View File

@ -46,16 +46,6 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#ifdef MODULE_GNRC_NETIF_EVENTS
/**
* @brief Event type used for passing netdev pointers together with the event
*/
typedef struct {
event_t super;
netdev_t *dev;
} event_netdev_t;
#endif /* MODULE_GNRC_NETIF_EVENTS */
static void _update_l2addr_from_dev(gnrc_netif_t *netif);
static void _configure_netdev(netdev_t *dev);
static void *_gnrc_netif_thread(void *args);