From 1ce19494161f33de90e3ec8c01aa7bfa2ca3c0c9 Mon Sep 17 00:00:00 2001 From: Timothy Finnegan Date: Sat, 31 Aug 2024 16:19:58 -0700 Subject: [PATCH] Ran rustfmt to re-format my changes --- common/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/src/lib.rs b/common/src/lib.rs index 7a8d91b5f8..66f3686530 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -44,7 +44,8 @@ pub enum MemoryType { /// released to the memory location in an unspecified order. Write-Combine memory does not /// guarantee that the order at which you write to it is the order at which those writes are /// committed to memory. - WriteCombining, /// Memory stored in an intermediate Write Combine Buffer and released later + WriteCombining, + /// Memory stored in an intermediate Write Combine Buffer and released later /// Memory-Mapped I/O. This is an aarch64-specific term. DeviceMemory, }