From 52148c7aadfecb2ba0d475bf1ee2d261092c8755 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 18 Nov 2024 11:07:51 +0100 Subject: [PATCH] soc/integration/soc_core: Fix with_uartbone changes. --- litex/soc/integration/soc_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 33b5c0073f..deabbae94d 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -256,7 +256,7 @@ def __init__(self, platform, clk_freq, # Add UARTBone. if with_uartbone: - self.add_uartbone(baudrate=uart_baudrate, fifo_depth=uart_fifo_depth, with_dynamic_baudrate=with_dynamic_baudrate) + self.add_uartbone(baudrate=uart_baudrate, with_dynamic_baudrate=uart_with_dynamic_baudrate) # Add UART. if with_uart: