diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-12-13 02:52:26 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-17 00:30:19 +0300 |
commit | 8ae936690972dfcad73d0dde1095b9f32af5ee95 (patch) | |
tree | fa4f81646cdef3f9f0bd1f86a2dc64c045b23540 /arch/x86/kernel/time_64.c | |
parent | 915b0d0104b72fd36af088ba4b11b5690bc96a6c (diff) | |
download | linux-8ae936690972dfcad73d0dde1095b9f32af5ee95.tar.xz |
x86: hardirq: use inc_irq_stat() in non-unified functions
Impact: cleanup
Replace incrementing irq stat with inc_irq_stat() in non-unified functions.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/time_64.c')
-rw-r--r-- | arch/x86/kernel/time_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c index 418a095c5796..1749cacde8b9 100644 --- a/arch/x86/kernel/time_64.c +++ b/arch/x86/kernel/time_64.c @@ -51,7 +51,7 @@ EXPORT_SYMBOL(profile_pc); irqreturn_t timer_interrupt(int irq, void *dev_id) { - add_pda(irq0_irqs, 1); + inc_irq_stat(irq0_irqs); global_clock_event->event_handler(global_clock_event); |