1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 17:01:19 +01:00

Merge pull request #12699 from basilfx/feature/netdev_tap_stack

netdev_tap: don't allocate DEBUG_EXTRA_STACKSIZE twice
This commit is contained in:
Kaspar Schleiser 2019-11-16 23:16:00 +01:00 committed by GitHub
commit 61c6b071b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@
#define TAP_MAC_PRIO (GNRC_NETIF_PRIO)
static netdev_tap_t netdev_tap[NETDEV_TAP_MAX];
static char _netdev_eth_stack[NETDEV_TAP_MAX][TAP_MAC_STACKSIZE + DEBUG_EXTRA_STACKSIZE];
static char _netdev_eth_stack[NETDEV_TAP_MAX][TAP_MAC_STACKSIZE];
void auto_init_netdev_tap(void)
{