From 534952adff2b9b7a5c87bc75d3927b77327f0fab Mon Sep 17 00:00:00 2001 From: Mateusz Holenko Date: Thu, 27 Apr 2023 21:52:32 +0200 Subject: [PATCH] drivers: serial: uart_miv: Disable SERIAL_SUPPORT_INTERRUPT In the real MiV platform, UART does not have any interrupts routed to the interrupt controller. Up to this stage, the driver implemented a separate thread to simulate interrupt operation to enable shell samples. This is not required anymore, as Zephyr can run shell on interrupt-less UARTs. Signed-off-by: Mateusz Holenko --- drivers/serial/Kconfig.miv | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/serial/Kconfig.miv b/drivers/serial/Kconfig.miv index 3ac7ef3c2a..32dc9c59bf 100644 --- a/drivers/serial/Kconfig.miv +++ b/drivers/serial/Kconfig.miv @@ -8,6 +8,5 @@ config UART_MIV default y depends on DT_HAS_MICROCHIP_COREUART_ENABLED select SERIAL_HAS_DRIVER - select SERIAL_SUPPORT_INTERRUPT help This option enables the Mi-V serial driver.