diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-11-21 12:09:48 +0100 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-12-05 11:26:42 +0100 |
commit | 9ff68186eaac415bfc0b84d627b7ecec24b0c52d (patch) | |
tree | b9433e39c949dd19f20e3fdf978b6cdd6c1ad336 /Documentation/adding-syscalls.txt | |
parent | dmaengine: at_xdmac: Remove unnecessary synchronize_irq() before free_irq() (diff) | |
download | linux-9ff68186eaac415bfc0b84d627b7ecec24b0c52d.tar.xz linux-9ff68186eaac415bfc0b84d627b7ecec24b0c52d.zip |
dmaengine: img-mdc: Remove unnecessary synchronize_irq() before devm_free_irq()
Calling synchronize_irq() right before devm_free_irq() is quite useless. On
one hand the IRQ can easily fire again before devm_free_irq() is entered,
on the other hand devm_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, dev;
@@
-synchronize_irq(irq);
devm_free_irq(dev, irq, ...);
// </smpl>
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'Documentation/adding-syscalls.txt')
0 files changed, 0 insertions, 0 deletions