mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 01:51:53 +00:00
97299a3035
We don't need dev_err() messages when platform_get_irq() fails now that platform_get_irq() prints an error message itself when something goes wrong. Let's remove these prints with a simple semantic patch. // <smpl> @@ expression ret; struct platform_device *E; @@ ret = ( platform_get_irq(E, ...) | platform_get_irq_byname(E, ...) ); if ( \( ret < 0 \| ret <= 0 \) ) { ( -if (ret != -EPROBE_DEFER) -{ ... -dev_err(...); -... } | ... -dev_err(...); ) ... } // </smpl> While we're here, remove braces on if statements that only have one statement (manually). Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Stephen Boyd <swboyd@chromium.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> |
||
---|---|---|
.. | ||
img-ir-core.c | ||
img-ir-hw.c | ||
img-ir-hw.h | ||
img-ir-jvc.c | ||
img-ir-nec.c | ||
img-ir-raw.c | ||
img-ir-raw.h | ||
img-ir-rc5.c | ||
img-ir-rc6.c | ||
img-ir-sanyo.c | ||
img-ir-sharp.c | ||
img-ir-sony.c | ||
img-ir.h | ||
Kconfig | ||
Makefile |