[Bug 197847] PPC: No monitor signal with radeon driver
https://bugzilla.novell.com/show_bug.cgi?id=197847 ------- Comment #18 from sndirsch@novell.com 2006-09-12 03:58 MST ------- I suggest to not use BIOS data on ppc, when it's bogus anyway. Hopefully then it's working again. So simply free info->VBIOS, set to NULL and return FALSE on ppc in radeon_bios.c:RADEONGetBIOSInfo(). Something like this: /* BIOS data on ppc seems to be bogus anyway */ #if !defined(__powerpc__) if (info->VBIOS[0] != 0x55 || info->VBIOS[1] != 0xaa) #endif { xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "Unrecognized BIOS signature, BIOS data will not be used\n"); xfree (info->VBIOS); info->VBIOS = NULL; return FALSE; } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
participants (1)
-
bugzilla_noreply@novell.com