From 13484b5bdc52fff525dae68109cad7d87cfc9f41 Mon Sep 17 00:00:00 2001 From: Richard Wheatley Date: Fri, 1 Sep 2023 08:09:52 -0500 Subject: [PATCH] drivers: serial: uart_pl011_ambiq.h: Remove reserved CLK frequency UART CLK does not support the 48MHz frequency option Signed-off-by: Richard Wheatley --- drivers/serial/uart_pl011_ambiq.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/serial/uart_pl011_ambiq.h b/drivers/serial/uart_pl011_ambiq.h index 8cc36419385..2223cbed577 100644 --- a/drivers/serial/uart_pl011_ambiq.h +++ b/drivers/serial/uart_pl011_ambiq.h @@ -36,9 +36,6 @@ static inline int pl011_ambiq_clk_set(const struct device *dev, uint32_t clk) case 24000000: clksel = PL011_CR_AMBIQ_CLKSEL_24MHZ; break; - case 48000000: - clksel = PL011_CR_AMBIQ_CLKSEL_48MHZ; - break; default: return -EINVAL; }