diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2004-02-28 22:43:18 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2004-02-28 22:43:18 +0000 |
| commit | 2881b39793d28d082cdeb1afaa8d1d96a5d1c457 (patch) | |
| tree | 2a8d40f4e3731359f5303bd2dfd10f13802811ad /sys/dev | |
| parent | 961af6677bda00818b01a9facec086b5c07e8af6 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpica/acpi_thermal.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/acpica/acpi_thermal.c b/sys/dev/acpica/acpi_thermal.c index 03d50cedd1175..60bc4f5cf4c16 100644 --- a/sys/dev/acpica/acpi_thermal.c +++ b/sys/dev/acpica/acpi_thermal.c @@ -201,6 +201,12 @@ acpi_tz_attach(device_t dev) 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. */ AcpiInstallNotifyHandler(sc->tz_handle, ACPI_DEVICE_NOTIFY, |
