drivers: serial: gecko: fix impmlicit declaration of IRQ_CONNECT

Previously, the build was failing due to implicit declaration
of `IRQ_CONNECT`. Simply include `<zephyr/irq.h>` to fix.

Signed-off-by: Christopher Friedt <cfriedt@meta.com>
This commit is contained in:
Christopher Friedt 2022-10-11 20:30:15 -04:00 committed by Anas Nashif
commit 582f77ea38
2 changed files with 2 additions and 0 deletions

View file

@ -8,6 +8,7 @@
#include <errno.h>
#include <zephyr/drivers/uart.h>
#include <zephyr/irq.h>
#include <em_leuart.h>
#include <em_gpio.h>
#include <em_cmu.h>

View file

@ -7,6 +7,7 @@
#include <errno.h>
#include <zephyr/drivers/uart.h>
#include <zephyr/irq.h>
#include <em_usart.h>
#include <em_gpio.h>
#include <em_cmu.h>