Commit adced0c2 authored by Ian Morris's avatar Ian Morris Committed by Dan Kalowsky
Browse files

drivers: serial: fix renesas ra sci uart hardware flow control enable



Fixed typo in Renesas RA SCI UART configuration that was preventing
hardware flow control from being enabled.

Signed-off-by: default avatarIan Morris <ian.d.morris@outlook.com>
parent 0d1a788e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1180,7 +1180,7 @@ static void uart_ra_sci_eri_isr(const struct device *dev)
				.parity = UART_CFG_PARITY_NONE,                                    \
				.stop_bits = UART_CFG_STOP_BITS_1,                                 \
				.data_bits = UART_CFG_DATA_BITS_8,                                 \
				.flow_ctrl = COND_CODE_1(DT_NODE_HAS_PROP(idx, hw_flow_control),   \
				.flow_ctrl = COND_CODE_1(DT_INST_PROP(index, hw_flow_control),     \
							 (UART_CFG_FLOW_CTRL_RTS_CTS),             \
							 (UART_CFG_FLOW_CTRL_NONE)),               \
			},                                                                         \