Fixed incorrect comments that referenced the UART as connected to MCU. Signed-off-by: Matt Ranostay <[email protected]> --- configs/arm64/k3-am625-sk-inmate-demo.c | 4 ++-- configs/arm64/k3-am625-sk-linux-demo.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configs/arm64/k3-am625-sk-inmate-demo.c b/configs/arm64/k3-am625-sk-inmate-demo.c index 65cf4a7f..49edd62d 100644 --- a/configs/arm64/k3-am625-sk-inmate-demo.c +++ b/configs/arm64/k3-am625-sk-inmate-demo.c @@ -2,7 +2,7 @@ * Jailhouse, a Linux-based partitioning hypervisor * * Configuration for demo inmate on K3 based platforms. - * 1CPU, 64K RAM, 1 serial port(MCU UART 0). + * 1CPU, 64K RAM, 1 serial port(MAIN UART 1). * * Copyright (c) 2019, 2022 Texas Instruments Incorporated - http://www.ti.com/ * @@ -48,7 +48,7 @@ struct { }, .mem_regions = { - /* MCU UART0 */ { + /* MAIN UART1 */ { .phys_start = 0x02810000, .virt_start = 0x02810000, .size = 0x10000, diff --git a/configs/arm64/k3-am625-sk-linux-demo.c b/configs/arm64/k3-am625-sk-linux-demo.c index 81f4e880..a3385efc 100644 --- a/configs/arm64/k3-am625-sk-linux-demo.c +++ b/configs/arm64/k3-am625-sk-linux-demo.c @@ -105,7 +105,7 @@ struct { JAILHOUSE_MEM_EXECUTE | JAILHOUSE_MEM_DMA | JAILHOUSE_MEM_LOADABLE, }, - /* MCU UART0 */ { + /* MAIN UART1 */ { .phys_start = 0x02810000, .virt_start = 0x02810000, .size = 0x10000, -- 2.36.1 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jailhouse-dev/20220526192847.77340-1-mranostay%40ti.com.
