Skip to content

Commit

Permalink
drivers: wifi: esp32: Fix compilation error
Browse files Browse the repository at this point in the history
Fix function declaration.

Signed-off-by: Marek Matej <marek.matej@espressif.com>
  • Loading branch information
Marek Matej authored and henrikbrixandersen committed Nov 5, 2023
1 parent a6da17a commit d5a1a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/wifi/esp32/src/esp_wifi_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct esp32_wifi_runtime {
uint8_t state;
};

static void esp_wifi_event_task(void);
static void esp_wifi_event_task(void *, void *, void *);

K_MSGQ_DEFINE(esp_wifi_msgq, sizeof(system_event_t), 10, 4);
K_THREAD_STACK_DEFINE(esp_wifi_event_stack, CONFIG_ESP32_WIFI_EVENT_TASK_STACK_SIZE);
Expand Down

0 comments on commit d5a1a8b

Please sign in to comment.