Skip to content

Commit

Permalink
Merge pull request #12699 from basilfx/feature/netdev_tap_stack
Browse files Browse the repository at this point in the history
netdev_tap: don't allocate DEBUG_EXTRA_STACKSIZE twice
  • Loading branch information
kaspar030 authored Nov 16, 2019
2 parents 92191ef + 229a01b commit 61c6b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/auto_init/netif/auto_init_netdev_tap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 61c6b07

Please sign in to comment.