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

sys/auto_init: fix stack size for encx24j600 stack

This commit is contained in:
Hauke Petersen 2015-11-02 15:29:10 +01:00
parent 3ab389b1fd
commit 9052a09831

View File

@ -37,7 +37,7 @@ static encx24j600_t encx24j600;
/**
* @brief Stacks for the MAC layer threads
*/
static char _netdev2_eth_stack[MAC_STACKSIZE + DEBUG_EXTRA_STACKSIZE];
static char _netdev2_eth_stack[MAC_STACKSIZE];
static gnrc_netdev2_t _gnrc_encx24j600;
void auto_init_encx24j600(void)