Common subdirectories: ./.deps and ../../xf86-video-ati.new/src/.deps Common subdirectories: ./CVS and ../../xf86-video-ati.new/src/CVS diff -u ./r128_probe.c ../../xf86-video-ati.new/src/r128_probe.c --- ./r128_probe.c 2006-03-22 23:30:14.000000000 +0100 +++ ../../xf86-video-ati.new/src/r128_probe.c 2006-04-14 17:42:47.000000000 +0200 @@ -50,6 +50,7 @@ #include "atipciids.h" #include "xf86.h" +#include "xf86Priv.h" #include "xf86Resources.h" #include "r128_chipset.h" @@ -130,6 +131,7 @@ void R128Identify(int flags) { + if( xf86LogVerbose > 3 ) xf86PrintChipsets(R128_NAME, "Driver for ATI Rage 128 chipsets", R128Chipsets); Only in ../../xf86-video-ati.new/src/: r128_probe.c~ diff -u ./radeon.h ../../xf86-video-ati.new/src/radeon.h --- ./radeon.h 2006-04-02 01:02:40.000000000 +0200 +++ ../../xf86-video-ati.new/src/radeon.h 2006-04-15 17:04:04.000000000 +0200 @@ -41,6 +41,7 @@ #include "xf86str.h" #include "compiler.h" #include "xf86fbman.h" +#include "xf86Priv.h" /* PCI support */ #include "xf86Pci.h" @@ -117,8 +118,10 @@ #if RADEON_DEBUG #define RADEONTRACE(x) \ do { \ - ErrorF("(**) %s(%d): ", RADEON_NAME, pScrn->scrnIndex); \ - ErrorF x; \ + if ( xf86LogVerbose > 2) { \ + ErrorF("(**) %s(%d): ", RADEON_NAME, pScrn->scrnIndex); \ + ErrorF x; \ + } \ } while(0) #else #define RADEONTRACE(x) do { } while(0) Only in ../../xf86-video-ati.new/src/: radeon.h~ diff -u ./radeon_probe.c ../../xf86-video-ati.new/src/radeon_probe.c --- ./radeon_probe.c 2006-03-22 23:30:14.000000000 +0100 +++ ../../xf86-video-ati.new/src/radeon_probe.c 2006-04-13 23:38:27.000000000 +0200 @@ -52,6 +52,7 @@ #define _XF86MISC_SERVER_ #include #include "xf86Resources.h" +#include "xf86Priv.h" #include "radeon_chipset.h" @@ -223,6 +224,7 @@ void RADEONIdentify(int flags) { + if( xf86LogVerbose > 3 ) xf86PrintChipsets(RADEON_NAME, "Driver for ATI Radeon chipsets", RADEONChipsets);