diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-10-23 09:24:10 -0400 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-10-23 09:24:10 -0400 |
commit | d9214556b11a8d18ff588e60824c12041d30f791 (patch) | |
tree | 04ab59d13961675811a55c96fb12b2b167b72318 /arch/m32r/kernel | |
parent | 72a1419a9d4c859a3345e4b83f8ef7d599d3818c (diff) | |
parent | e82c6106b04b85879d802bbbeaed30d9b10a92e2 (diff) |
Merge branches 'boards' and 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/hskinnemoen/avr32-2.6
Diffstat (limited to 'arch/m32r/kernel')
-rw-r--r-- | arch/m32r/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/m32r/kernel/smpboot.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/m32r/kernel/process.c b/arch/m32r/kernel/process.c index 5be4faaf5b1c..7103d91e1a2f 100644 --- a/arch/m32r/kernel/process.c +++ b/arch/m32r/kernel/process.c | |||
@@ -11,7 +11,7 @@ | |||
11 | #undef DEBUG_PROCESS | 11 | #undef DEBUG_PROCESS |
12 | #ifdef DEBUG_PROCESS | 12 | #ifdef DEBUG_PROCESS |
13 | #define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \ | 13 | #define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \ |
14 | __FUNCTION__, ##args) | 14 | __func__, ##args) |
15 | #else | 15 | #else |
16 | #define DPRINTK(fmt, args...) | 16 | #define DPRINTK(fmt, args...) |
17 | #endif | 17 | #endif |
diff --git a/arch/m32r/kernel/smpboot.c b/arch/m32r/kernel/smpboot.c index 2c03ac1d005f..39cb6da72dcb 100644 --- a/arch/m32r/kernel/smpboot.c +++ b/arch/m32r/kernel/smpboot.c | |||
@@ -40,6 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include <linux/module.h> | 42 | #include <linux/module.h> |
43 | #include <linux/cpu.h> | ||
43 | #include <linux/init.h> | 44 | #include <linux/init.h> |
44 | #include <linux/kernel.h> | 45 | #include <linux/kernel.h> |
45 | #include <linux/mm.h> | 46 | #include <linux/mm.h> |
@@ -498,6 +499,8 @@ static void __init smp_online(void) | |||
498 | { | 499 | { |
499 | int cpu_id = smp_processor_id(); | 500 | int cpu_id = smp_processor_id(); |
500 | 501 | ||
502 | notify_cpu_starting(cpu_id); | ||
503 | |||
501 | local_irq_enable(); | 504 | local_irq_enable(); |
502 | 505 | ||
503 | /* Get our bogomips. */ | 506 | /* Get our bogomips. */ |