summary refs log tree commit diff
path: root/net/tipc/addr.c
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2015-11-21 12:14:44 +0100
committerBrian Norris <computersforpeace@gmail.com>2015-12-04 15:39:08 -0800
commit41849d49d7d5307d7399314b59fb16d1c39ce0f0 (patch)
tree7e9e05fcb640d5e3f1c99430002de313914b1ed8 /net/tipc/addr.c
parentd6af26944a02e6d325b82160d52e08dc4e315396 (diff)
downloadlinux-41849d49d7d5307d7399314b59fb16d1c39ce0f0.tar.gz
mtd: nand: r852: 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: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'net/tipc/addr.c')
0 files changed, 0 insertions, 0 deletions