diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-09-22 09:58:45 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-12 10:39:06 -0400 |
commit | 154cd387cdf0e5566ce523cbddf92dd2a062dfd6 (patch) | |
tree | 8ab329f26992c570b65fe62843275eb71c8bf505 /include/linux/lockdep.h | |
parent | 3795de236d67a05994a1a12759db9d4dd9ffc42c (diff) |
genirq: Remove early_init_irq_lock_class()
early_init_irq_lock_class() is called way before anything touches the
irq descriptors. In case of SPARSE_IRQ=y this is a NOP operation
because the radix tree is empty at this point. For the SPARSE_IRQ=n
case it's sufficient to set the lock class in early_init_irq().
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/lockdep.h')
-rw-r--r-- | include/linux/lockdep.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index 06aed8305bf3..17d050ce7ab8 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h | |||
@@ -424,14 +424,6 @@ do { \ | |||
424 | 424 | ||
425 | #endif /* CONFIG_LOCKDEP */ | 425 | #endif /* CONFIG_LOCKDEP */ |
426 | 426 | ||
427 | #ifdef CONFIG_GENERIC_HARDIRQS | ||
428 | extern void early_init_irq_lock_class(void); | ||
429 | #else | ||
430 | static inline void early_init_irq_lock_class(void) | ||
431 | { | ||
432 | } | ||
433 | #endif | ||
434 | |||
435 | #ifdef CONFIG_TRACE_IRQFLAGS | 427 | #ifdef CONFIG_TRACE_IRQFLAGS |
436 | extern void early_boot_irqs_off(void); | 428 | extern void early_boot_irqs_off(void); |
437 | extern void early_boot_irqs_on(void); | 429 | extern void early_boot_irqs_on(void); |