From 2899df629f491960543521718a37837b0f7a7f06 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Mon, 18 Sep 2023 10:54:29 -0700 Subject: [PATCH] uart: ns16550: remove unused forward declaration Remove the unused forward declaration of the driver API struct. Signed-off-by: Daniel Leung --- drivers/serial/uart_ns16550.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/serial/uart_ns16550.c b/drivers/serial/uart_ns16550.c index c7357d076f1..8124733c2fb 100644 --- a/drivers/serial/uart_ns16550.c +++ b/drivers/serial/uart_ns16550.c @@ -367,8 +367,6 @@ static inline uint8_t reg_interval(const struct device *dev) return config->reg_interval; } -static const struct uart_driver_api uart_ns16550_driver_api; - static inline uintptr_t get_port(const struct device *dev) { uintptr_t port;