Fix copy paste error and update rmm

This commit is contained in:
Jeremy Soller
2022-07-29 18:53:27 -06:00
parent 07015d17ba
commit 358abbd40f
2 changed files with 2 additions and 2 deletions

2
rmm

Submodule rmm updated: 23d4995e50...e9950ee6da

View File

@@ -3,7 +3,7 @@ use raw_cpuid::{CpuId, CpuIdResult};
pub fn cpuid() -> Option<CpuId> {
//TODO: ensure that CPUID exists! https://wiki.osdev.org/CPUID#Checking_CPUID_availability
Some(CpuId::with_cpuid_fn(|a, c| {
let result = unsafe { core::arch::x86::__cpuid_count(a, c) };
let result = unsafe { core::arch::x86_64::__cpuid_count(a, c) };
CpuIdResult {
eax: result.eax,
ebx: result.ebx,