diff options
-rw-r--r-- | arch/mn10300/include/asm/hardirq.h | 1 | ||||
-rw-r--r-- | arch/mn10300/kernel/process.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/arch/mn10300/include/asm/hardirq.h b/arch/mn10300/include/asm/hardirq.h index 54d950117674..7bd9b7cc2451 100644 --- a/arch/mn10300/include/asm/hardirq.h +++ b/arch/mn10300/include/asm/hardirq.h | |||
@@ -19,7 +19,6 @@ | |||
19 | /* assembly code in softirq.h is sensitive to the offsets of these fields */ | 19 | /* assembly code in softirq.h is sensitive to the offsets of these fields */ |
20 | typedef struct { | 20 | typedef struct { |
21 | unsigned int __softirq_pending; | 21 | unsigned int __softirq_pending; |
22 | unsigned long idle_timestamp; | ||
23 | unsigned int __nmi_count; /* arch dependent */ | 22 | unsigned int __nmi_count; /* arch dependent */ |
24 | unsigned int __irq_count; /* arch dependent */ | 23 | unsigned int __irq_count; /* arch dependent */ |
25 | } ____cacheline_aligned irq_cpustat_t; | 24 | } ____cacheline_aligned irq_cpustat_t; |
diff --git a/arch/mn10300/kernel/process.c b/arch/mn10300/kernel/process.c index f48373e2bc1c..243e33cd874b 100644 --- a/arch/mn10300/kernel/process.c +++ b/arch/mn10300/kernel/process.c | |||
@@ -88,8 +88,6 @@ void cpu_idle(void) | |||
88 | idle = pm_idle; | 88 | idle = pm_idle; |
89 | if (!idle) | 89 | if (!idle) |
90 | idle = default_idle; | 90 | idle = default_idle; |
91 | |||
92 | irq_stat[cpu].idle_timestamp = jiffies; | ||
93 | idle(); | 91 | idle(); |
94 | } | 92 | } |
95 | 93 | ||