summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses/i2c-pxa.c
diff options
context:
space:
mode:
authorDejin Zheng <zhengdejin5@gmail.com>2020-04-16 23:23:45 +0800
committerWolfram Sang <wsa@the-dreams.de>2020-04-18 23:42:14 +0200
commite42688ed5cf5936fb55c78cc365dbe0944af7c63 (patch)
tree7494859c73c0ec0b849ed47ae615860c882b2c66 /drivers/i2c/busses/i2c-pxa.c
parente517526195de400158e05a08764d1fb61d579105 (diff)
downloadlinux-stable-e42688ed5cf5936fb55c78cc365dbe0944af7c63.tar.gz
linux-stable-e42688ed5cf5936fb55c78cc365dbe0944af7c63.tar.bz2
linux-stable-e42688ed5cf5936fb55c78cc365dbe0944af7c63.zip
i2c: busses: remove duplicate dev_err()
it will print an error message by itself when platform_get_irq() goes wrong. so don't need dev_err() in here again. Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Suggested-by: Markus Elfring <Markus.Elfring@web.de> Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-pxa.c')
-rw-r--r--drivers/i2c/busses/i2c-pxa.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
index 466e4f681d7a..37246cbbe14c 100644
--- a/drivers/i2c/busses/i2c-pxa.c
+++ b/drivers/i2c/busses/i2c-pxa.c
@@ -1267,10 +1267,8 @@ static int i2c_pxa_probe(struct platform_device *dev)
return PTR_ERR(i2c->reg_base);
irq = platform_get_irq(dev, 0);
- if (irq < 0) {
- dev_err(&dev->dev, "no irq resource: %d\n", irq);
+ if (irq < 0)
return irq;
- }
/* Default adapter num to device id; i2c_pxa_probe_dt can override. */
i2c->adap.nr = dev->id;