memory: omap-gpmc: consistently use !res for NULL checks

The driver already uses 'if (!res)' pattern in the probe function so be
consistent.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200724182328.3348-11-krzk@kernel.org
This commit is contained in:
Krzysztof Kozlowski 2020-07-24 20:23:22 +02:00
parent 07b6cc4540
commit dc1a9283f1
1 changed files with 1 additions and 1 deletions

View File

@ -2393,7 +2393,7 @@ static int gpmc_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, gpmc);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (res == NULL)
if (!res)
return -ENOENT;
gpmc_base = devm_ioremap_resource(&pdev->dev, res);