diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-11-21 09:16:38 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-12-03 15:09:28 -0200 |
commit | f7488c50f3e9ff8fe1893f4e6d447ec96e721261 (patch) | |
tree | 23159f09758a08f0ee1c88244799bf9b953ba843 /tools/perf/scripts/python/call-graph-from-postgresql.py | |
parent | c1500ba0b61e9abf95e0e7ecd3c4ad877f019abe (diff) |
[media] dm1105: Remove unnecessary synchronize_irq() before free_irq()
Calling synchronize_irq() right before free_irq() is quite useless. On one
hand the IRQ can easily fire again before free_irq() is entered, on the
other hand free_irq() itself calls synchronize_irq() internally (in a race
condition free way), before any state associated with the IRQ is freed.
Patch was generated using the following semantic patch:
// <smpl>
@@
expression irq;
@@
-synchronize_irq(irq);
free_irq(irq, ...);
// </smpl>
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'tools/perf/scripts/python/call-graph-from-postgresql.py')
0 files changed, 0 insertions, 0 deletions