mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-04-16 06:10:42 +00:00
pinctrl: Fix return value check in amd_gpio_probe()
In case of error, the function devm_ioremap_nocache() returns NULL pointer not ERR_PTR(). The IS_ERR() test in the return value check should be replaced with NULL test. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
41bd0c52c0
commit
424a6c607c
@ -753,8 +753,8 @@ static int amd_gpio_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
gpio_dev->base = devm_ioremap_nocache(&pdev->dev, res->start,
|
gpio_dev->base = devm_ioremap_nocache(&pdev->dev, res->start,
|
||||||
resource_size(res));
|
resource_size(res));
|
||||||
if (IS_ERR(gpio_dev->base))
|
if (!gpio_dev->base)
|
||||||
return PTR_ERR(gpio_dev->base);
|
return -ENOMEM;
|
||||||
|
|
||||||
irq_base = platform_get_irq(pdev, 0);
|
irq_base = platform_get_irq(pdev, 0);
|
||||||
if (irq_base < 0) {
|
if (irq_base < 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user