From 5917c4b01b621f5f8b000b7d35df4fb5c96e1abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=99=9A=E7=AB=B9?= Date: Thu, 11 Aug 2022 15:23:12 +0000 Subject: [PATCH] =?UTF-8?q?store=E6=8B=BC=E5=86=99=E4=B8=8D=E5=AF=B9=20Sig?= =?UTF-8?q?ned-off-by:=20=E8=99=9A=E7=AB=B9=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 虚竹 --- utils/los_reg.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/los_reg.h b/utils/los_reg.h index 24bf63d1..90fdedba 100644 --- a/utils/los_reg.h +++ b/utils/los_reg.h @@ -47,22 +47,22 @@ extern "C" { /** * @ingroup los_base - * Read a UINT8 value from addr and stroed in value. + * Read a UINT8 value from addr and store in value. */ #define READ_UINT8(value, addr) ((value) = *((volatile UINT8 *)(addr))) /** * @ingroup los_base - * Read a UINT16 value from addr and stroed in addr. + * Read a UINT16 value from addr and store in addr. */ #define READ_UINT16(value, addr) ((value) = *((volatile UINT16 *)(addr))) /** * @ingroup los_base - * Read a UINT32 value from addr and stroed in value. + * Read a UINT32 value from addr and store in value. */ #define READ_UINT32(value, addr) ((value) = *((volatile UINT32 *)(addr))) /** * @ingroup los_base - * Read a UINT64 value from addr and stroed in value. + * Read a UINT64 value from addr and store in value. */ #define READ_UINT64(value, addr) ((value) = *((volatile UINT64 *)(addr)))