Module Name: xsrc Committed By: macallan Date: Tue Dec 10 10:13:19 UTC 2024
Modified Files: xsrc/external/mit/xf86-video-ngle/dist/src: ngle_driver.c Log Message: make sure we log a found message for every device: [ 2209.958] (II) NGLEPreInit: found Visualize FX 2/4/6 ( GID 2fc1066b ) [ 2209.971] (II) NGLEPreInit: found HCRX ( GID 2bcb015a ) To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 \ xsrc/external/mit/xf86-video-ngle/dist/src/ngle_driver.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/xf86-video-ngle/dist/src/ngle_driver.c diff -u xsrc/external/mit/xf86-video-ngle/dist/src/ngle_driver.c:1.8 xsrc/external/mit/xf86-video-ngle/dist/src/ngle_driver.c:1.9 --- xsrc/external/mit/xf86-video-ngle/dist/src/ngle_driver.c:1.8 Tue Dec 10 10:02:52 2024 +++ xsrc/external/mit/xf86-video-ngle/dist/src/ngle_driver.c Tue Dec 10 10:13:19 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: ngle_driver.c,v 1.8 2024/12/10 10:02:52 macallan Exp $ */ +/* $NetBSD: ngle_driver.c,v 1.9 2024/12/10 10:13:19 macallan Exp $ */ /* * Copyright (c) 2024 Michael Lorenz * All rights reserved. @@ -277,8 +277,6 @@ NGLEProbe(DriverPtr drv, int flags) if ((name = xf86TokenToString(NGLEChipsets, gid)) == NULL) return FALSE; - xf86Msg(X_INFO, "%s: found %s ( GID %08x )\n", __func__, name, gid); - if ( xf86DoConfigure && xf86DoConfigurePass1 ) { GDevPtr pGDev; @@ -390,7 +388,8 @@ NGLEPreInit(ScrnInfoPtr pScrn, int flags fPtr->reglen = 0x1000000; break; } - xf86Msg(X_ERROR, "gid %08x fb access %08x\n", fPtr->gid, fPtr->fbacc); + xf86Msg(X_INFO, "%s: found %s ( GID %08x )\n", + __func__, xf86TokenToString(NGLEChipsets, gid), gid); /* Handle depth */ default_depth = fPtr->fbi.fbi_bitsperpixel <= 24 ? fPtr->fbi.fbi_bitsperpixel : 24;