drm/nouveau/therm: send some messages to debug level
authorBen Skeggs <bskeggs@redhat.com>
Wed, 24 Apr 2013 03:14:02 +0000 (13:14 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 26 Apr 2013 05:37:55 +0000 (15:37 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/core/subdev/therm/nv84.c
drivers/gpu/drm/nouveau/core/subdev/therm/temp.c

index be486ce..42ba633 100644 (file)
@@ -61,13 +61,13 @@ nv84_therm_program_alarms(struct nouveau_therm *therm)
        nv_wr32(therm, 0x20414, sensor->thrs_down_clock.temp);
        spin_unlock_irqrestore(&priv->sensor.alarm_program_lock, flags);
 
-       nv_info(therm,
-               "Programmed thresholds [ %d(%d), %d(%d), %d(%d), %d(%d) ]\n",
-               sensor->thrs_fan_boost.temp, sensor->thrs_fan_boost.hysteresis,
-               sensor->thrs_down_clock.temp,
-               sensor->thrs_down_clock.hysteresis,
-               sensor->thrs_critical.temp, sensor->thrs_critical.hysteresis,
-               sensor->thrs_shutdown.temp, sensor->thrs_shutdown.hysteresis);
+       nv_debug(therm,
+                "Programmed thresholds [ %d(%d), %d(%d), %d(%d), %d(%d) ]\n",
+                sensor->thrs_fan_boost.temp, sensor->thrs_fan_boost.hysteresis,
+                sensor->thrs_down_clock.temp,
+                sensor->thrs_down_clock.hysteresis,
+                sensor->thrs_critical.temp, sensor->thrs_critical.hysteresis,
+                sensor->thrs_shutdown.temp, sensor->thrs_shutdown.hysteresis);
 
 }
 
index 470f6a4..dde746c 100644 (file)
@@ -205,13 +205,13 @@ nouveau_therm_program_alarms_polling(struct nouveau_therm *therm)
        struct nouveau_therm_priv *priv = (void *)therm;
        struct nvbios_therm_sensor *sensor = &priv->bios_sensor;
 
-       nv_info(therm,
-               "programmed thresholds [ %d(%d), %d(%d), %d(%d), %d(%d) ]\n",
-               sensor->thrs_fan_boost.temp, sensor->thrs_fan_boost.hysteresis,
-               sensor->thrs_down_clock.temp,
-               sensor->thrs_down_clock.hysteresis,
-               sensor->thrs_critical.temp, sensor->thrs_critical.hysteresis,
-               sensor->thrs_shutdown.temp, sensor->thrs_shutdown.hysteresis);
+       nv_debug(therm,
+                "programmed thresholds [ %d(%d), %d(%d), %d(%d), %d(%d) ]\n",
+                sensor->thrs_fan_boost.temp, sensor->thrs_fan_boost.hysteresis,
+                sensor->thrs_down_clock.temp,
+                sensor->thrs_down_clock.hysteresis,
+                sensor->thrs_critical.temp, sensor->thrs_critical.hysteresis,
+                sensor->thrs_shutdown.temp, sensor->thrs_shutdown.hysteresis);
 
        alarm_timer_callback(&priv->sensor.therm_poll_alarm);
 }