diff options
| author | 2016-02-08 21:41:13 +0100 | |
|---|---|---|
| committer | 2016-02-25 12:00:20 +0200 | |
| commit | 400b43c5826964598e06bd3373ea4523ce749c5e (patch) | |
| tree | 76eef35eb8399c2c43fe21c0675f868493a65b62 /tools/perf/scripts/python | |
| parent | b43: Remove unnecessary synchronize_irq() before free_irq() (diff) | |
rtlwifi: 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>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions
