diff options
author | Vasyl Gomonovych <gomonovych@gmail.com> | 2017-11-28 10:21:40 -0500 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2017-11-29 15:58:58 -0500 |
commit | 1203839290f151b84f5e54165d6d039e9514b236 (patch) | |
tree | 5ed443e95c52ffdba16eef3315b326de87b94257 | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) |
pcmcia: at91_cf: Use PTR_ERR_OR_ZERO()
Fix ptr_ret.cocci warnings:
drivers/pcmcia/at91_cf.c:239:1-3: WARNING: PTR_ERR_OR_ZERO can be used
Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR
Generated by: scripts/coccinelle/api/ptr_ret.cocci
Signed-off-by: Vasyl Gomonovych <gomonovych@gmail.com>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
-rw-r--r-- | drivers/pcmcia/at91_cf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pcmcia/at91_cf.c b/drivers/pcmcia/at91_cf.c index 87147bcd1655..7da7b0f0ae1b 100644 --- a/drivers/pcmcia/at91_cf.c +++ b/drivers/pcmcia/at91_cf.c | |||
@@ -236,10 +236,8 @@ static int at91_cf_dt_init(struct platform_device *pdev) | |||
236 | pdev->dev.platform_data = board; | 236 | pdev->dev.platform_data = board; |
237 | 237 | ||
238 | mc = syscon_regmap_lookup_by_compatible("atmel,at91rm9200-sdramc"); | 238 | mc = syscon_regmap_lookup_by_compatible("atmel,at91rm9200-sdramc"); |
239 | if (IS_ERR(mc)) | ||
240 | return PTR_ERR(mc); | ||
241 | 239 | ||
242 | return 0; | 240 | return PTR_ERR_OR_ZERO(mc); |
243 | } | 241 | } |
244 | #else | 242 | #else |
245 | static int at91_cf_dt_init(struct platform_device *pdev) | 243 | static int at91_cf_dt_init(struct platform_device *pdev) |