summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm
diff options
context:
space:
mode:
authorOwain Ainsworth <oga@cvs.openbsd.org>2009-03-01 23:54:18 +0000
committerOwain Ainsworth <oga@cvs.openbsd.org>2009-03-01 23:54:18 +0000
commit19342c0a1fd50c5130e405b195e94eb0fdb2c7b2 (patch)
tree61cec79aca9455aa016374952233cec657d7475b /sys/dev/pci/drm
parentb389396886848498f9ab1142d2c4ed85c3b5b97f (diff)
Switch more info printfs to debug. The average user doesn't want to see
them. Prompted by deraadt@
Diffstat (limited to 'sys/dev/pci/drm')
-rw-r--r--sys/dev/pci/drm/radeon_cp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/radeon_cp.c b/sys/dev/pci/drm/radeon_cp.c
index 735a4f7fe45..8c2dd6e6cc7 100644
--- a/sys/dev/pci/drm/radeon_cp.c
+++ b/sys/dev/pci/drm/radeon_cp.c
@@ -1126,7 +1126,7 @@ radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init)
if (dev_priv->new_memmap) {
u32 base = 0;
- DRM_INFO("Setting GART location based on new memory map\n");
+ DRM_DEBUG("Setting GART location based on new memory map\n");
/* If using AGP, try to locate the AGP aperture at the same
* location in the card and on the bus, though we have to
@@ -1157,7 +1157,7 @@ radeon_do_init_cp(struct drm_device *dev, drm_radeon_init_t *init)
DRM_INFO("GART aligned down from 0x%08x to 0x%08x\n",
base, dev_priv->gart_vm_start);
} else {
- DRM_INFO("Setting GART location based on old memory map\n");
+ DRM_DEBUG("Setting GART location based on old memory map\n");
dev_priv->gart_vm_start = dev_priv->fb_location +
RADEON_READ(RADEON_CONFIG_APER_SIZE);
}