diff options
author | 2009-03-01 23:54:17 +0000 | |
---|---|---|
committer | 2009-03-01 23:54:17 +0000 | |
commit | 041a57ca2a844af6ceb95069bd554a7549c657b7 (patch) | |
tree | c7c64a5207790e6917e948b3f8a6cb4e38a99dc8 /sys | |
parent | regen (diff) | |
download | wireguard-openbsd-041a57ca2a844af6ceb95069bd554a7549c657b7.tar.xz wireguard-openbsd-041a57ca2a844af6ceb95069bd554a7549c657b7.zip |
Switch more info printfs to debug. The average user doesn't want to see
them.
Prompted by deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/radeon_cp.c | 4 |
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); } |