Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[smbios] Print SMBIOS version number in debugging messages
  • Loading branch information
Michael Brown committed Aug 19, 2008
1 parent 320b072 commit 0c76187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arch/i386/firmware/pcbios/smbios.c
Expand Up @@ -136,8 +136,8 @@ static int find_smbios ( void ) {
}

/* Fill result structure */
DBG ( "Found SMBIOS entry point at %04x:%04x\n",
BIOS_SEG, offset );
DBG ( "Found SMBIOS v%d.%d entry point at %04x:%04x\n",
u.entry.major, u.entry.minor, BIOS_SEG, offset );
smbios.address = phys_to_user ( u.entry.smbios_address );
smbios.len = u.entry.smbios_len;
smbios.count = u.entry.smbios_count;
Expand Down

0 comments on commit 0c76187

Please sign in to comment.