From ccac2cec732848ec7abd098582b2129a0f538893 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Sat, 12 Oct 2024 08:51:34 +0200 Subject: [PATCH] mention E820 in docs for UnknownBios This wasn't entirely obvious previously, let's be explicit. --- api/src/info.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/info.rs b/api/src/info.rs index 81c849d8..d8962d62 100644 --- a/api/src/info.rs +++ b/api/src/info.rs @@ -173,6 +173,8 @@ pub enum MemoryRegionKind { /// Contains the UEFI memory type tag. UnknownUefi(u32), /// An unknown memory region reported by the BIOS firmware. + /// + /// Contains the E820 memory type. UnknownBios(u32), }