commit | b02266531f3e7f9b3ce8fc95c06a15b99fd13b7f | [log] [tgz] |
---|---|---|
author | Lars-Peter Clausen <[email protected]> | Mon May 20 19:14:50 2013 +0200 |
committer | Herbert Xu <[email protected]> | Tue May 28 15:43:04 2013 +0800 |
tree | 63f0981b522ef1ec12ed394db66d0e5b02f38f89 | |
parent | 519d8b1a9d81be7e4ffad8aa6b0e3ea03984bb86 [diff] |
crypto: hifn_795x - Pass correct pointer to free_irq() free_irq() expects the same pointer that was passed to request_irq(), otherwise the IRQ is not freed. The issue was found using the following coccinelle script: <smpl> @r1@ type T; T devid; @@ request_irq(..., devid) @r2@ type r1.T; T devid; position p; @@ free_irq@p(..., devid) @@ position p != r2.p; @@ *free_irq@p(...) </smpl> Signed-off-by: Lars-Peter Clausen <[email protected]> Signed-off-by: Herbert Xu <[email protected]>