diff options
Diffstat (limited to 'arch/m32r')
-rw-r--r-- | arch/m32r/Kconfig | 5 | ||||
-rw-r--r-- | arch/m32r/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/m32r/kernel/smpboot.c | 1 | ||||
-rw-r--r-- | arch/m32r/mm/discontig.c | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index f57113f1f892..dbaed4a63815 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
@@ -36,15 +36,14 @@ config NO_IOPORT | |||
36 | config NO_DMA | 36 | config NO_DMA |
37 | def_bool y | 37 | def_bool y |
38 | 38 | ||
39 | config ARCH_SUPPORTS_AOUT | ||
40 | def_bool y | ||
41 | |||
42 | config HZ | 39 | config HZ |
43 | int | 40 | int |
44 | default 100 | 41 | default 100 |
45 | 42 | ||
46 | source "init/Kconfig" | 43 | source "init/Kconfig" |
47 | 44 | ||
45 | source "kernel/Kconfig.freezer" | ||
46 | |||
48 | 47 | ||
49 | menu "Processor type and features" | 48 | menu "Processor type and features" |
50 | 49 | ||
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 fc2994811f15..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> |
diff --git a/arch/m32r/mm/discontig.c b/arch/m32r/mm/discontig.c index cbc3c4c54566..7daf897292cf 100644 --- a/arch/m32r/mm/discontig.c +++ b/arch/m32r/mm/discontig.c | |||
@@ -111,9 +111,9 @@ unsigned long __init setup_memory(void) | |||
111 | initrd_start, INITRD_SIZE); | 111 | initrd_start, INITRD_SIZE); |
112 | } else { | 112 | } else { |
113 | printk("initrd extends beyond end of memory " | 113 | printk("initrd extends beyond end of memory " |
114 | "(0x%08lx > 0x%08lx)\ndisabling initrd\n", | 114 | "(0x%08lx > 0x%08llx)\ndisabling initrd\n", |
115 | INITRD_START + INITRD_SIZE, | 115 | INITRD_START + INITRD_SIZE, |
116 | PFN_PHYS(max_low_pfn)); | 116 | (unsigned long long)PFN_PHYS(max_low_pfn)); |
117 | 117 | ||
118 | initrd_start = 0; | 118 | initrd_start = 0; |
119 | } | 119 | } |