arch: x86_64: Remove residual debugging from smbios code

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2020-06-30 15:09:23 +01:00
parent 602f76e4fc
commit f8a8a5ca68

View File

@ -165,7 +165,6 @@ pub fn setup_smbios(mem: &GuestMemoryMmap) -> Result<()> {
let physptr = GuestAddress(SMBIOS_START)
.checked_add(mem::size_of::<Smbios30Entrypoint>() as u64)
.ok_or(Error::NotEnoughMemory)?;
eprintln!("{:x}", physptr.0);
let mut curptr = physptr;
let mut handle = 0;