提交 a815ab8b 编写于 作者: L Li Zefan 提交者: Len Brown

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: NLi Zefan <lizf@cn.fujitsu.com>
Acked-by: NZhao Yakui <yakui.zhao@intel.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLen Brown <len.brown@intel.com>
上级 2a241d77
...@@ -121,7 +121,7 @@ acpi_power_get_context(acpi_handle handle, ...@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册