diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-02-09 10:52:45 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-02-09 10:52:45 +0000 |
commit | 389e86ad3f793c755388760d8e9078605ec6e6c2 (patch) | |
tree | 1e0533516d909eb8e3580b24fe1a9a5e8c3e73ec /sys | |
parent | 5831efa0a800884353121f5005c70adc7c27887d (diff) |
Only print information on the writeback test if it fails. Otherwise only
print if we're debugging.
Nagged often enough my marco@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/radeon_cp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/radeon_cp.c b/sys/dev/pci/drm/radeon_cp.c index 4d168e2acfb..b2469b395fd 100644 --- a/sys/dev/pci/drm/radeon_cp.c +++ b/sys/dev/pci/drm/radeon_cp.c @@ -772,7 +772,7 @@ radeon_test_writeback(drm_radeon_private_t *dev_priv) if (tmp < dev_priv->usec_timeout) { dev_priv->writeback_works = 1; - DRM_INFO("writeback test succeeded in %d usecs\n", tmp); + DRM_DEBUG("writeback test succeeded in %d usecs\n", tmp); } else { dev_priv->writeback_works = 0; DRM_INFO("writeback test failed\n"); |