mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
pkg: lwip: do not re-set values already set in netif_add
lwip_netdev2_init() is called by netif_add, which already sets these values to an according value.
This commit is contained in:
parent
25e18dad88
commit
b81ac9ca0e
@ -47,7 +47,6 @@
|
||||
#define ETHERNET_IFNAME2 'T'
|
||||
|
||||
/* running number for different interfaces */
|
||||
static uint8_t _num = 0;
|
||||
static kernel_pid_t _pid = KERNEL_PID_UNDEF;
|
||||
static char _stack[LWIP_NETDEV2_STACKSIZE];
|
||||
static msg_t _queue[LWIP_NETDEV2_QUEUE_LEN];
|
||||
@ -88,13 +87,11 @@ err_t lwip_netdev2_init(struct netif *netif)
|
||||
sizeof(dev_type)) < 0) {
|
||||
return ERR_IF;
|
||||
}
|
||||
netif->num = _num++;
|
||||
#if LWIP_NETIF_HOSTNAME
|
||||
netif->hostname = "riot";
|
||||
#endif /* LWIP_NETIF_HOSTNAME */
|
||||
|
||||
/* XXX: for now assume its Ethernet, since netdev2 is implemented only by ethernet drivers */
|
||||
netif->flags = 0;
|
||||
switch (dev_type) {
|
||||
#ifdef MODULE_NETDEV2_ETH
|
||||
case NETDEV2_TYPE_ETHERNET:
|
||||
|
Loading…
Reference in New Issue
Block a user