Module Name: xsrc Committed By: tsutsui Date: Sun Aug 9 11:51:31 UTC 2020
Modified Files: xsrc/external/mit/xorg-server/dist/hw/sun: sunInit.c Log Message: Put probed framebuffer info to a log file by default. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 xsrc/external/mit/xorg-server/dist/hw/sun/sunInit.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: xsrc/external/mit/xorg-server/dist/hw/sun/sunInit.c diff -u xsrc/external/mit/xorg-server/dist/hw/sun/sunInit.c:1.7 xsrc/external/mit/xorg-server/dist/hw/sun/sunInit.c:1.8 --- xsrc/external/mit/xorg-server/dist/hw/sun/sunInit.c:1.7 Sun Aug 9 07:35:42 2020 +++ xsrc/external/mit/xorg-server/dist/hw/sun/sunInit.c Sun Aug 9 11:51:31 2020 @@ -307,6 +307,11 @@ OpenFrameBuffer( } } if (ret) { + int verb = 1; + + if (sunFbInfo) + verb = -1; + devFbUsed = TRUE; if (fbattr) { if (fbattr->fbtype.fb_type >= XFBTYPE_LASTPLUSONE) { @@ -325,16 +330,14 @@ OpenFrameBuffer( if (sunFbData[fbattr->emu_types[_i]].init) { sunFbs[screen].info.fb_type = fbattr->emu_types[_i]; ret = TRUE; - if (sunFbInfo) - ErrorF ("%s is emulating a %s\n", device, - sunFbData[fbattr->fbtype.fb_type].name); + LogMessageVerb(X_INFO, verb, "%s is emulating a %s\n", + device, sunFbData[fbattr->fbtype.fb_type].name); break; } } } - if (sunFbInfo) - ErrorF ("%s is really a %s\n", device, - sunFbData[fbattr ? fbattr->fbtype.fb_type : sunFbs[screen].info.fb_type].name); + LogMessageVerb(X_INFO, verb, "%s is really a %s\n", device, + sunFbData[fbattr ? fbattr->fbtype.fb_type : sunFbs[screen].info.fb_type].name); } } if (!ret)