From 09a98d8ce9d5f71eeb579c23ca1751d741489f71 Mon Sep 17 00:00:00 2001 From: Nate Lawson <njl@FreeBSD.org> Date: Tue, 25 May 2004 04:18:22 +0000 Subject: [PATCH] Remove call to _INI for thermal devices. ACPI-CA now calls _INI for Devices, ThermalZones, and Processors. --- sys/dev/acpica/acpi_thermal.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sys/dev/acpica/acpi_thermal.c b/sys/dev/acpica/acpi_thermal.c index 27f46de094cf..ccaaa16411f1 100644 --- a/sys/dev/acpica/acpi_thermal.c +++ b/sys/dev/acpica/acpi_thermal.c @@ -201,12 +201,6 @@ acpi_tz_attach(device_t dev) if ((error = acpi_tz_establish(sc)) != 0) goto out; - /* - * XXX Call _INI if it exists. ACPICA should do this but only handles - * Device objects for now. - */ - AcpiEvaluateObject(sc->tz_handle, "_INI", NULL, NULL); - /* * Register for any Notify events sent to this zone. */