From 90395bd94db31d07fff7b2826727d8844d28be2c Mon Sep 17 00:00:00 2001 From: Felix Schladt Date: Thu, 7 Sep 2023 13:30:52 +0200 Subject: [PATCH] libplatsupport: fix typo Signed-off-by: Felix Schladt --- libplatsupport/src/mach/bcm/pl011_uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libplatsupport/src/mach/bcm/pl011_uart.c b/libplatsupport/src/mach/bcm/pl011_uart.c index cc77725d4..a43de81b3 100644 --- a/libplatsupport/src/mach/bcm/pl011_uart.c +++ b/libplatsupport/src/mach/bcm/pl011_uart.c @@ -132,7 +132,7 @@ static int pl011_uart_cr_configure(ps_chardevice_t *dev) uint32_t val = r->cr; val |= CR_TXE; // Transmit enable - val |= CR_RXE; // Teceive enable + val |= CR_RXE; // Receive enable r->cr = val;