Re: [PATCH 2/3] i2c: qup: Remove dev_err() log after platform_get_irq*() failure

2019-09-17 Thread Saiyam Doshi
On Tue, Sep 17, 2019 at 05:28:47PM +0200, Markus Elfring wrote: > > The semantic patch that makes this report is available > > in scripts/coccinelle/api/platform_get_irq.cocci. > > > > Found using - http://coccinelle.lip6.fr/ > > Can a tag like “Generated by: scripts/coccinelle/api/platform_get_ir

Re: [PATCH 2/3] i2c: qup: Remove dev_err() log after platform_get_irq*() failure

2019-09-17 Thread Markus Elfring
> The semantic patch that makes this report is available > in scripts/coccinelle/api/platform_get_irq.cocci. > > Found using - http://coccinelle.lip6.fr/ Can a tag like “Generated by: scripts/coccinelle/api/platform_get_irq.cocci” be more helpful than the other description variant? > +++ b/drive

[PATCH 2/3] i2c: qup: Remove dev_err() log after platform_get_irq*() failure

2019-09-16 Thread Saiyam Doshi
The debug message after platform_get_irq() failure is redundant because platform_get_irq() already prints an error. Thus remove it. The semantic patch that makes this report is available in scripts/coccinelle/api/platform_get_irq.cocci. Found using - http://coccinelle.lip6.fr/ Signed-off-by: Sai