[PATCH] ACPI: check a return value correctly in

From: Li Zefan
Date: Fri Apr 18 2008 - 16:27:29 EST


We should check *resource != NULL rather than resource != NULL, which will
be
always true.

Signed-off-by: Li Zefan <lizf@xxxxxxxxxxxxxx>
Acked-by: Zhao Yakui <yakui.zhao@xxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
Signed-off-by: Len Brown <len.brown@xxxxxxxxx>

diff --git a/drivers/acpi/power.c b/drivers/acpi/power.c
index 76bf6d9..f2a76ac 100644
--- a/drivers/acpi/power.c
+++ b/drivers/acpi/power.c
@@ -121,7 +121,7 @@ acpi_power_get_context(acpi_handle handle,
}

*resource = acpi_driver_data(device);
- if (!resource)
+ if (!*resource)
return -ENODEV;

return 0;


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/