From b2a785ca3d2233115889b9b26351e852a3729b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=A8=E7=9D=BF?= Date: Thu, 2 Jan 2025 07:46:54 +0000 Subject: [PATCH] add doc --- modules/axhal/src/arch/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/axhal/src/arch/mod.rs b/modules/axhal/src/arch/mod.rs index 43d2c73a4a..9b8681d450 100644 --- a/modules/axhal/src/arch/mod.rs +++ b/modules/axhal/src/arch/mod.rs @@ -16,10 +16,10 @@ cfg_if::cfg_if! { /// Cache operations. #[derive(Debug, Clone, Copy)] pub enum CacheOp { - // Write back to memory + /// Write back to memory Clean, - // Invalidate cache + /// Invalidate cache Invalidate, - // Clean and invalidate + /// Clean and invalidate CleanAndInvalidate, }