From e88f91ed668cf8c9c265157584ab2a6f1c44e32e Mon Sep 17 00:00:00 2001 From: Kendall Willis Date: Fri, 18 Jul 2025 15:33:51 -0500 Subject: [PATCH] fix(pm_low_power_modes): Add data type to devmem2 command Fix the devmem2 command to program the mcu_uart0 and wkup_uart0 by adding the data type of word to the command. Without having the data type in the command, it leads the command to fail. Signed-off-by: Kendall Willis --- .../Power_Management/pm_low_power_modes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/linux/Foundational_Components/Power_Management/pm_low_power_modes.rst b/source/linux/Foundational_Components/Power_Management/pm_low_power_modes.rst index 5548847cc..4a379bcae 100644 --- a/source/linux/Foundational_Components/Power_Management/pm_low_power_modes.rst +++ b/source/linux/Foundational_Components/Power_Management/pm_low_power_modes.rst @@ -132,8 +132,8 @@ I/O Only Plus DDR .. code-block:: console - root@:~# devmem2 0x4084014 0x20050000 # MCU_PADCONFIG5 for mcu_uart0 - root@:~# devmem2 0x4084024 0x20050000 # MCU_PADCONFIG9 for wkup_uart0 + root@:~# devmem2 0x4084014 w 0x20050000 # MCU_PADCONFIG5 for mcu_uart0 + root@:~# devmem2 0x4084024 w 0x20050000 # MCU_PADCONFIG9 for wkup_uart0 .. note::