irqchip/irq-imx-gpcv2: Fix spinlock initialization
authorTyler Baker <[email protected]>
Thu, 13 Apr 2017 22:27:31 +0000 (15:27 -0700)
committerThomas Gleixner <[email protected]>
Fri, 14 Apr 2017 08:55:05 +0000 (10:55 +0200)
commit75eb5e1e7b4edbc8e8f930de59004d21cb46961f
tree2ddb89866bc5c22a4d3e8a707c7cdd4a902c6c67
parent3412386b531244f24a27c79ee003506a52a00848
irqchip/irq-imx-gpcv2: Fix spinlock initialization

The raw_spinlock in the IMX GPCV2 interupt chip is not initialized before
usage. That results in a lockdep splat:

  INFO: trying to register non-static key.
  the code is fine but needs lockdep annotation.
  turning off the locking correctness validator.

Add the missing raw_spin_lock_init() to the setup code.

Fixes: e324c4dc4a59 ("irqchip/imx-gpcv2: IMX GPCv2 driver for wakeup sources")
Signed-off-by: Tyler Baker <[email protected]>
Reviewed-by: Fabio Estevam <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
drivers/irqchip/irq-imx-gpcv2.c