diff options
| author | Stephen Boyd <[email protected]> | 2019-07-30 11:15:05 -0700 |
|---|---|---|
| committer | Herbert Xu <[email protected]> | 2019-08-09 15:11:38 +1000 |
| commit | 514838e920d06f5c2ba56e9656107dfcbbb90219 (patch) | |
| tree | 69b0ab1382bca331e0880ad6f335931fd25a1d7c /tools/perf/scripts/python/export-to-sqlite.py | |
| parent | f26882a3475eb7b2c35fd3b1e291924161b1327d (diff) | |
crypto: drivers - Remove dev_err() usage after platform_get_irq()
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 <[email protected]>
Cc: Herbert Xu <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
0 files changed, 0 insertions, 0 deletions