2009-08-04 21:52:16 +02:00
|
|
|
Index: hw/xfree86/fbdevhw/fbdevhw.c
|
2010-03-20 03:42:15 +01:00
|
|
|
================================================================================
|
|
|
|
--- hw/xfree86/fbdevhw/fbdevhw.c
|
2009-08-04 21:52:16 +02:00
|
|
|
+++ hw/xfree86/fbdevhw/fbdevhw.c
|
2010-03-20 03:42:15 +01:00
|
|
|
@@ -957,9 +957,10 @@
|
2008-04-20 15:39:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ /* Novell Bug #146462 */
|
|
|
|
if (-1 == ioctl(fPtr->fd, FBIOBLANK, (void *)fbmode))
|
|
|
|
- xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
|
|
|
|
- "FBIOBLANK: %s\n", strerror(errno));
|
|
|
|
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO,
|
|
|
|
+ "FBIOBLANK: %s (Screen blanking not supported by vesafb of Linux Kernel)\n", strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2010-03-20 03:42:15 +01:00
|
|
|
@@ -975,9 +976,10 @@
|
2008-04-20 15:39:03 +02:00
|
|
|
|
|
|
|
unblank = xf86IsUnblank(mode);
|
|
|
|
|
|
|
|
+ /* Novell Bug #146462 */
|
|
|
|
if (-1 == ioctl(fPtr->fd, FBIOBLANK, (void *)(1-unblank))) {
|
|
|
|
- xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
|
|
|
|
- "FBIOBLANK: %s\n", strerror(errno));
|
|
|
|
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO,
|
|
|
|
+ "FBIOBLANK: %s (Screen blanking not supported by vesafb of Linux Kernel)\n", strerror(errno));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|