ACPI: APD: Check for NULL pointer after calling devm_ioremap()
Because devres_alloc() may fail, devm_ioremap() may return NULL.
Then, 'clk_data->base' will be assigned to clkdev->data->base in
platform_device_register_data().
The PTR_ERR_OR_ZERO() check on clk_data does not cover 'base', so
it is better to add an explicit check against NULL after updating
it.
Fixes: 3f4ba94e36
("ACPI: APD: Add AMD misc clock handler support")
Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn>
[ rjw: Changelog rewrite ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Родитель
bca21755b9
Коммит
2cea3ec5b0
|
@ -95,6 +95,8 @@ static int fch_misc_setup(struct apd_private_data *pdata)
|
||||||
resource_size(rentry->res));
|
resource_size(rentry->res));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (!clk_data->base)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
acpi_dev_free_resource_list(&resource_list);
|
acpi_dev_free_resource_list(&resource_list);
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче