提交 ad0f4090 编写于 作者: Z Zhang Rui

int340x_thermal/processor_thermal_device: return failure when

 there is no ACPI device object

processor_thermal_device driver needs ACPI support to work. Thus, the driver
probing should fail when there is no ACPI device object asscociated.

This fixes a NULL pointer dereference when the driver is loaded
with INT340X feature disabled in BIOS.
Reported-by: NChen Yu <yu.c.chen@intel.com>
Signed-off-by: NZhang Rui <rui.zhang@intel.com>
Tested-by: NChen Yu <yu.c.chen@intel.com>
上级 014d9d5d
......@@ -130,6 +130,8 @@ static int proc_thermal_add(struct device *dev,
int ret;
adev = ACPI_COMPANION(dev);
if (!adev)
return -ENODEV;
status = acpi_evaluate_object(adev->handle, "PPCC", NULL, &buf);
if (ACPI_FAILURE(status))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册