Fix most print format warnings

git-svn-id: svn://coreboot.org/openbios/openbios-devel@272 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2008-11-29 16:24:51 +00:00
parent e92a02951f
commit a0cabb495a
7 changed files with 15 additions and 10 deletions

View File

@@ -938,7 +938,7 @@ static char get_fdc_version(void)
if ((bytes = result(reply_buffer, MAX_REPLIES)) <= 0x00)
return FDC_NONE; /* No FDC present ??? */
if ((bytes==1) && (reply_buffer[0] == 0x80)){
printk_info("FDC %d is an 8272A\n");
printk_info("FDC is an 8272A\n");
return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
}
if (bytes != 10) {