]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Use __SPIN_LOCK_UNLOCKED to initialize bad_irq_desc.lock
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sat, 31 Jan 2009 00:21:55 +0000 (01:21 +0100)
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sat, 31 Jan 2009 00:21:55 +0000 (01:21 +0100)
SPIN_LOCK_UNLOCKED is deprecated as lockdep cannot properly work with
locks initialized with it.

This fix is necessary to compile the linux-rt tree for ARM.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Steven Rostedt <srostedt@redhat.com>
arch/arm/kernel/irq.c

index 7141cee1fab71e8b131d03e0d8e6dbfc043dbb85..363db186cb93334791588db5b2158e6f295c5c54 100644 (file)
@@ -101,7 +101,7 @@ unlock:
 /* Handle bad interrupts */
 static struct irq_desc bad_irq_desc = {
        .handle_irq = handle_bad_irq,
-       .lock = SPIN_LOCK_UNLOCKED
+       .lock = __SPIN_LOCK_UNLOCKED(bad_irq_desc.lock),
 };
 
 /*