Skip to content

Commit

Permalink
Switch all references to "special purpose" to "specific purpose".
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Payne authored and Patrick-Payne committed Jun 21, 2024
1 parent a035e3a commit 40c831e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions igvm_defs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1168,14 +1168,14 @@ pub enum MemoryMapEntryType {
/// applied. Some isolation architectures only allow VTL2 protections on
/// certain memory ranges.
VTL2_PROTECTABLE = 0x3,
/// Special Purpose memory (SPM). This is memory with special properties
/// reserved for application specific purposes and shouldn't be used by
/// the firmware or operating system. This corresponds with the UEFI
/// memory map entry flag EFI_MEMORY_SP, introduced in UEFI 2.8.
/// Specific Purpose memory (SPM). This is memory with special properties
/// reserved for specific purposes and shouldn't be used by the firmware
/// or operating system. This corresponds with the UEFI memory map entry
/// flag EFI_MEMORY_SP, introduced in UEFI 2.8.
/// See https://uefi.org/specs/UEFI/2.10/07_Services_Boot_Services.html
#[cfg(feature = "unstable")]
#[cfg_attr(docsrs, doc(cfg(feature = "unstable")))]
SPECIAL_PURPOSE = 0x4,
SPECIFIC_PURPOSE = 0x4,
}

impl Default for MemoryMapEntryType {
Expand Down

0 comments on commit 40c831e

Please sign in to comment.