ACPI: fix de-reference bug in power resource driver
authorZhao Yakui <yakui.zhao@intel.com>
Mon, 27 Oct 2008 08:04:53 +0000 (16:04 +0800)
committerLen Brown <len.brown@intel.com>
Tue, 28 Oct 2008 05:38:59 +0000 (01:38 -0400)
change state to *state in the function of acpi_power_get_state()

Signed-off-by: yakui.zhao@intel.com
Signed-off-by: Len Brown <len.brown@intel.com>
drivers/acpi/power.c

index a1718e5..30d4a52 100644 (file)
@@ -153,7 +153,8 @@ static int acpi_power_get_state(acpi_handle handle, int *state)
                              ACPI_POWER_RESOURCE_STATE_OFF;
 
        ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Resource [%s] is %s\n",
-                         acpi_ut_get_node_name(handle), state ? "on" : "off"));
+                         acpi_ut_get_node_name(handle),
+                               *state ? "on" : "off"));
 
        return 0;
 }