From 2dd2a715071510107312e3bc89099ff5dcc3b8c9 Mon Sep 17 00:00:00 2001 From: able Date: Sun, 28 May 2023 02:04:20 -0500 Subject: [PATCH] CPU: minor changes in cpuid --- kernel/src/arch/x86_64/cpuid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/src/arch/x86_64/cpuid.rs b/kernel/src/arch/x86_64/cpuid.rs index 98ac9dd..25227ea 100644 --- a/kernel/src/arch/x86_64/cpuid.rs +++ b/kernel/src/arch/x86_64/cpuid.rs @@ -145,7 +145,7 @@ impl VersionInformation { fn processor_signature(self) -> u32 { self.eax } - + // TODO: Change return type and move this to a file that has the list pub fn brand_string(self) -> Option<&'static str> { let brand_index = bits_of(self.ebx, 0, 7); let processor_signature = self.processor_signature();