diff options
| -rw-r--r-- | drivers/pwm/pwm-renesas-tpu.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/pwm/pwm-renesas-tpu.c b/drivers/pwm/pwm-renesas-tpu.c index 96e0cc488a4e..03c1aa3c48a2 100644 --- a/drivers/pwm/pwm-renesas-tpu.c +++ b/drivers/pwm/pwm-renesas-tpu.c | |||
| @@ -410,10 +410,8 @@ static int tpu_probe(struct platform_device *pdev) | |||
| 410 | } | 410 | } |
| 411 | 411 | ||
| 412 | tpu->base = devm_ioremap_resource(&pdev->dev, res); | 412 | tpu->base = devm_ioremap_resource(&pdev->dev, res); |
| 413 | if (tpu->base == NULL) { | 413 | if (IS_ERR(tpu->base)) |
| 414 | dev_err(&pdev->dev, "failed to remap I/O memory\n"); | 414 | return PTR_ERR(tpu->base); |
| 415 | return -ENXIO; | ||
| 416 | } | ||
| 417 | 415 | ||
| 418 | tpu->clk = devm_clk_get(&pdev->dev, NULL); | 416 | tpu->clk = devm_clk_get(&pdev->dev, NULL); |
| 419 | if (IS_ERR(tpu->clk)) { | 417 | if (IS_ERR(tpu->clk)) { |
