aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2001-08-21 09:06:02 +0000
committerMike Smith <msmith@FreeBSD.org>2001-08-21 09:06:02 +0000
commit6d3d1a8100ef68cd828424ae395fec3c055e234c (patch)
tree68d9710735a1de4cd5376f0e35b4f01cab4d1c70 /sys/dev
parent2da5cc6e002844a684db1d3070b940b2d9773e58 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpica/acpi_thermal.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi_thermal.c b/sys/dev/acpica/acpi_thermal.c
index eb154b2b1a9a..8ea6762e3422 100644
--- a/sys/dev/acpica/acpi_thermal.c
+++ b/sys/dev/acpica/acpi_thermal.c
@@ -612,13 +612,11 @@ acpi_tz_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
switch(notify) {
case TZ_NOTIFY_TEMPERATURE:
/* temperature change occurred */
- device_printf(sc->tz_dev, "notified of temperature reaching setpoint\n");
AcpiOsQueueForExecution(OSD_PRIORITY_HIGH, (OSD_EXECUTION_CALLBACK)acpi_tz_monitor, sc);
break;
case TZ_NOTIFY_DEVICES:
case TZ_NOTIFY_LEVELS:
/* zone devices/setpoints changed */
- device_printf(sc->tz_dev, "notified of zone configuration change\n");
AcpiOsQueueForExecution(OSD_PRIORITY_HIGH, (OSD_EXECUTION_CALLBACK)acpi_tz_establish, sc);
break;
default: