Remove a check for the return value added in rev 1.41. It's not an error

to fail to turn off a fan, since the case is that it's usually already off.
This commit is contained in:
njl 2004-04-12 05:04:47 +00:00
parent 3688839453
commit a9c2757cc6

View File

@ -551,9 +551,7 @@ acpi_tz_all_off(struct acpi_tz_softc *sc)
static void
acpi_tz_switch_cooler_off(ACPI_OBJECT *obj, void *arg)
{
struct acpi_tz_softc *sc = (struct acpi_tz_softc *)arg;
ACPI_HANDLE cooler;
ACPI_STATUS status;
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
@ -567,12 +565,7 @@ acpi_tz_switch_cooler_off(ACPI_OBJECT *obj, void *arg)
ACPI_DEBUG_PRINT((ACPI_DB_OBJECTS, "called to turn %s off\n",
acpi_name(cooler)));
status = acpi_pwr_switch_consumer(cooler, ACPI_STATE_D3);
if (ACPI_FAILURE(status)) {
ACPI_VPRINT(sc->tz_dev, acpi_device_get_parent_softc(sc->tz_dev),
"failed to deactivate %s - %s\n", acpi_name(cooler),
AcpiFormatException(status));
}
acpi_pwr_switch_consumer(cooler, ACPI_STATE_D3);
return_VOID;
}