1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

cpu/esp32/esp_eth: remove gnrc specific code

This commit is contained in:
Gunar Schorcht 2019-12-16 17:09:06 +01:00
parent f14c4c8c2f
commit ace3107975

View File

@ -19,6 +19,10 @@
#ifndef ESP_ETH_NETDEV_H
#define ESP_ETH_NETDEV_H
#include <stdbool.h>
#include "mutex.h"
#include "net/ethernet.h"
#include "net/netdev.h"
#ifdef __cplusplus
@ -46,8 +50,6 @@ typedef struct
uint32_t event; /**< received event */
bool link_up; /**< indicates whether link is up */
gnrc_netif_t* netif; /**< reference to the corresponding netif */
mutex_t dev_lock; /**< device is already in use */
} esp_eth_netdev_t;