Jelajahi Sumber

ACPI / dock: Fix acpi_bus_get_device() check in drivers/acpi/dock.c

acpi_bus_get_device() returns int not acpi_status.

The patch change not to apply ACPI_SUCCESS() to the return value of
acpi_bus_get_device().

Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Yasuaki Ishimatsu 12 tahun lalu
induk
melakukan
02df7349d2
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      drivers/acpi/dock.c

+ 1 - 1
drivers/acpi/dock.c

@@ -825,7 +825,7 @@ static ssize_t show_docked(struct device *dev,
 
 	struct dock_station *dock_station = dev->platform_data;
 
-	if (ACPI_SUCCESS(acpi_bus_get_device(dock_station->handle, &tmp)))
+	if (!acpi_bus_get_device(dock_station->handle, &tmp))
 		return snprintf(buf, PAGE_SIZE, "1\n");
 	return snprintf(buf, PAGE_SIZE, "0\n");
 }