drivers/rtc/rtc-pl031.c: pass correct pointer to free_irq()
authorLars-Peter Clausen <[email protected]>
Fri, 24 May 2013 22:55:26 +0000 (15:55 -0700)
committerLinus Torvalds <[email protected]>
Fri, 24 May 2013 23:22:52 +0000 (16:22 -0700)
commitcac29af6bd6bc5c53499f39ef1eade193295b2f1
treea59cd6b3ad1023196499102b8c6f82c0e98a304d
parent387b8b3e37cb1c257fb607787f73815c30d22859
drivers/rtc/rtc-pl031.c: 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]>
Cc: Srinidhi Kasagar <[email protected]>
Cc: Linus Walleij <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/rtc/rtc-pl031.c