diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-11-21 14:14:44 +0300 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-12-05 02:39:08 +0300 |
commit | 41849d49d7d5307d7399314b59fb16d1c39ce0f0 (patch) | |
tree | 7e9e05fcb640d5e3f1c99430002de313914b1ed8 /arch/sh/boards | |
parent | d6af26944a02e6d325b82160d52e08dc4e315396 (diff) | |
download | linux-41849d49d7d5307d7399314b59fb16d1c39ce0f0.tar.xz |
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 'arch/sh/boards')
0 files changed, 0 insertions, 0 deletions