ACPI: check a return value correctly in acpi_power_get_context()
We should check *resource != NULL rather than resource != NULL, which will be always true. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Acked-by: Zhao Yakui <yakui.zhao@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
@@ -121,7 +121,7 @@ acpi_power_get_context(acpi_handle handle,
|
|||||||
}
|
}
|
||||||
|
|
||||||
*resource = acpi_driver_data(device);
|
*resource = acpi_driver_data(device);
|
||||||
if (!resource)
|
if (!*resource)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user