summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/i915/intel_pm.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2013-03-19 03:58:11 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2013-03-19 03:58:11 +0000
commitbd3bb490d163301ada25a55e659b5b387f73c99e (patch)
tree1ff4eaf7892f2f4d0447656ebbd285693c328178 /sys/dev/pci/drm/i915/intel_pm.c
parent988d1f48e365df7fe4db966ffedc73c2b6f19911 (diff)
make a few printfs debug only to reduce dmesg spam
Diffstat (limited to 'sys/dev/pci/drm/i915/intel_pm.c')
-rw-r--r--sys/dev/pci/drm/i915/intel_pm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/i915/intel_pm.c b/sys/dev/pci/drm/i915/intel_pm.c
index acfda003567..902854c389d 100644
--- a/sys/dev/pci/drm/i915/intel_pm.c
+++ b/sys/dev/pci/drm/i915/intel_pm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: intel_pm.c,v 1.1 2013/03/18 12:36:52 jsg Exp $ */
+/* $OpenBSD: intel_pm.c,v 1.2 2013/03/19 03:58:10 jsg Exp $ */
/*
* Copyright © 2012 Intel Corporation
*
@@ -2772,7 +2772,7 @@ gen6_enable_rps(struct drm_device *dev)
rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
}
- DRM_INFO("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
+ DRM_DEBUG("Enabling RC6 states: RC6 %s, RC6p %s, RC6pp %s\n",
(rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off",
(rc6_mask & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off",
(rc6_mask & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off");