summaryrefslogtreecommitdiff
path: root/hw/xfree86/int10
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-10-14 14:30:19 -0400
committerAdam Jackson <ajax@redhat.com>2008-10-14 14:30:19 -0400
commitb677bff97b62c3931df853bae25ab485892ae173 (patch)
tree74bf967ec76842a39985c1c7b09bcef54fa01b25 /hw/xfree86/int10
parentbd9c6b3a4d726a3f83ac6d8cf7211eddbc28f25a (diff)
int10: Degrade the checksum warning to X_INFO.
I've seen about one case in three years where this has actually been correlated with the real cause of failure, and we've trained people to freak out about X_WARNING, so let's be less alarmist.
Diffstat (limited to 'hw/xfree86/int10')
-rw-r--r--hw/xfree86/int10/helper_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/int10/helper_mem.c b/hw/xfree86/int10/helper_mem.c
index b59f47358..6f6ecc2b3 100644
--- a/hw/xfree86/int10/helper_mem.c
+++ b/hw/xfree86/int10/helper_mem.c
@@ -253,7 +253,7 @@ int10_check_bios(int scrnIndex, int codeSeg, const unsigned char* vbiosMem)
return FALSE;
if (bios_checksum(vbiosMem, size))
- xf86DrvMsg(scrnIndex, X_WARNING, "Bad V_BIOS checksum\n");
+ xf86DrvMsg(scrnIndex, X_INFO, "Bad V_BIOS checksum\n");
return TRUE;
}