diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/sh/Kconfig.debug | 1 | ||||
| -rw-r--r-- | arch/sh/boards/board-sh7785lcr.c | 1 | ||||
| -rw-r--r-- | arch/sh/boards/mach-hp6xx/pm.c | 1 | ||||
| -rw-r--r-- | arch/sh/drivers/dma/dma-sysfs.c | 2 | ||||
| -rw-r--r-- | arch/sh/kernel/cpu/fpu.c | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/cpu/sh2a/fpu.c | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/cpu/sh4/fpu.c | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/cpu/shmobile/pm.c | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/idle.c | 2 | ||||
| -rw-r--r-- | arch/sh/kernel/kgdb.c | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/process_32.c | 1 | ||||
| -rw-r--r-- | arch/sh/kernel/smp.c | 1 | ||||
| -rw-r--r-- | arch/sh/mm/cache-sh4.c | 1 | ||||
| -rw-r--r-- | arch/sh/mm/flush-sh4.c | 1 | ||||
| -rw-r--r-- | arch/sh/mm/sram.c | 1 |
15 files changed, 15 insertions, 2 deletions
diff --git a/arch/sh/Kconfig.debug b/arch/sh/Kconfig.debug index c1d5a820b1aa..5f2bb4242c0f 100644 --- a/arch/sh/Kconfig.debug +++ b/arch/sh/Kconfig.debug | |||
| @@ -61,6 +61,7 @@ config DUMP_CODE | |||
| 61 | config DWARF_UNWINDER | 61 | config DWARF_UNWINDER |
| 62 | bool "Enable the DWARF unwinder for stacktraces" | 62 | bool "Enable the DWARF unwinder for stacktraces" |
| 63 | select FRAME_POINTER | 63 | select FRAME_POINTER |
| 64 | depends on SUPERH32 | ||
| 64 | default n | 65 | default n |
| 65 | help | 66 | help |
| 66 | Enabling this option will make stacktraces more accurate, at | 67 | Enabling this option will make stacktraces more accurate, at |
diff --git a/arch/sh/boards/board-sh7785lcr.c b/arch/sh/boards/board-sh7785lcr.c index d879848f3cdd..d0d6221d7c2e 100644 --- a/arch/sh/boards/board-sh7785lcr.c +++ b/arch/sh/boards/board-sh7785lcr.c | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | #include <cpu/sh7785.h> | 28 | #include <cpu/sh7785.h> |
| 29 | #include <asm/heartbeat.h> | 29 | #include <asm/heartbeat.h> |
| 30 | #include <asm/clock.h> | 30 | #include <asm/clock.h> |
| 31 | #include <asm/bl_bit.h> | ||
| 31 | 32 | ||
| 32 | /* | 33 | /* |
| 33 | * NOTE: This board has 2 physical memory maps. | 34 | * NOTE: This board has 2 physical memory maps. |
diff --git a/arch/sh/boards/mach-hp6xx/pm.c b/arch/sh/boards/mach-hp6xx/pm.c index adc9b4bba828..8b50cf763c06 100644 --- a/arch/sh/boards/mach-hp6xx/pm.c +++ b/arch/sh/boards/mach-hp6xx/pm.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/gfp.h> | 14 | #include <linux/gfp.h> |
| 15 | #include <asm/io.h> | 15 | #include <asm/io.h> |
| 16 | #include <asm/hd64461.h> | 16 | #include <asm/hd64461.h> |
| 17 | #include <asm/bl_bit.h> | ||
| 17 | #include <mach/hp6xx.h> | 18 | #include <mach/hp6xx.h> |
| 18 | #include <cpu/dac.h> | 19 | #include <cpu/dac.h> |
| 19 | #include <asm/freq.h> | 20 | #include <asm/freq.h> |
diff --git a/arch/sh/drivers/dma/dma-sysfs.c b/arch/sh/drivers/dma/dma-sysfs.c index b1cb2715ad6e..67ee95603813 100644 --- a/arch/sh/drivers/dma/dma-sysfs.c +++ b/arch/sh/drivers/dma/dma-sysfs.c | |||
| @@ -54,7 +54,7 @@ static int __init dma_subsys_init(void) | |||
| 54 | if (unlikely(ret)) | 54 | if (unlikely(ret)) |
| 55 | return ret; | 55 | return ret; |
| 56 | 56 | ||
| 57 | return device_create_file(dma_subsys.dev_root, &dev_attr_devices.attr); | 57 | return device_create_file(dma_subsys.dev_root, &dev_attr_devices); |
| 58 | } | 58 | } |
| 59 | postcore_initcall(dma_subsys_init); | 59 | postcore_initcall(dma_subsys_init); |
| 60 | 60 | ||
diff --git a/arch/sh/kernel/cpu/fpu.c b/arch/sh/kernel/cpu/fpu.c index 7f1b70cace35..f8f7af51c128 100644 --- a/arch/sh/kernel/cpu/fpu.c +++ b/arch/sh/kernel/cpu/fpu.c | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | #include <linux/slab.h> | 2 | #include <linux/slab.h> |
| 3 | #include <asm/processor.h> | 3 | #include <asm/processor.h> |
| 4 | #include <asm/fpu.h> | 4 | #include <asm/fpu.h> |
| 5 | #include <asm/traps.h> | ||
| 5 | 6 | ||
| 6 | int init_fpu(struct task_struct *tsk) | 7 | int init_fpu(struct task_struct *tsk) |
| 7 | { | 8 | { |
diff --git a/arch/sh/kernel/cpu/sh2a/fpu.c b/arch/sh/kernel/cpu/sh2a/fpu.c index 488d24e0cdf0..98bbaa447c93 100644 --- a/arch/sh/kernel/cpu/sh2a/fpu.c +++ b/arch/sh/kernel/cpu/sh2a/fpu.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <asm/processor.h> | 14 | #include <asm/processor.h> |
| 15 | #include <asm/io.h> | 15 | #include <asm/io.h> |
| 16 | #include <asm/fpu.h> | 16 | #include <asm/fpu.h> |
| 17 | #include <asm/traps.h> | ||
| 17 | 18 | ||
| 18 | /* The PR (precision) bit in the FP Status Register must be clear when | 19 | /* The PR (precision) bit in the FP Status Register must be clear when |
| 19 | * an frchg instruction is executed, otherwise the instruction is undefined. | 20 | * an frchg instruction is executed, otherwise the instruction is undefined. |
diff --git a/arch/sh/kernel/cpu/sh4/fpu.c b/arch/sh/kernel/cpu/sh4/fpu.c index e74cd6c0f10d..69ab4d3c8d41 100644 --- a/arch/sh/kernel/cpu/sh4/fpu.c +++ b/arch/sh/kernel/cpu/sh4/fpu.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <cpu/fpu.h> | 16 | #include <cpu/fpu.h> |
| 17 | #include <asm/processor.h> | 17 | #include <asm/processor.h> |
| 18 | #include <asm/fpu.h> | 18 | #include <asm/fpu.h> |
| 19 | #include <asm/traps.h> | ||
| 19 | 20 | ||
| 20 | /* The PR (precision) bit in the FP Status Register must be clear when | 21 | /* The PR (precision) bit in the FP Status Register must be clear when |
| 21 | * an frchg instruction is executed, otherwise the instruction is undefined. | 22 | * an frchg instruction is executed, otherwise the instruction is undefined. |
diff --git a/arch/sh/kernel/cpu/shmobile/pm.c b/arch/sh/kernel/cpu/shmobile/pm.c index a6f95ae4aae7..08d27fac8d08 100644 --- a/arch/sh/kernel/cpu/shmobile/pm.c +++ b/arch/sh/kernel/cpu/shmobile/pm.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <asm/suspend.h> | 16 | #include <asm/suspend.h> |
| 17 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
| 18 | #include <asm/cacheflush.h> | 18 | #include <asm/cacheflush.h> |
| 19 | #include <asm/bl_bit.h> | ||
| 19 | 20 | ||
| 20 | /* | 21 | /* |
| 21 | * Notifier lists for pre/post sleep notification | 22 | * Notifier lists for pre/post sleep notification |
diff --git a/arch/sh/kernel/idle.c b/arch/sh/kernel/idle.c index 64852ecc6881..ee226e20c20c 100644 --- a/arch/sh/kernel/idle.c +++ b/arch/sh/kernel/idle.c | |||
| @@ -17,8 +17,8 @@ | |||
| 17 | #include <linux/irqflags.h> | 17 | #include <linux/irqflags.h> |
| 18 | #include <linux/smp.h> | 18 | #include <linux/smp.h> |
| 19 | #include <linux/cpuidle.h> | 19 | #include <linux/cpuidle.h> |
| 20 | #include <asm/pgalloc.h> | ||
| 21 | #include <linux/atomic.h> | 20 | #include <linux/atomic.h> |
| 21 | #include <asm/pgalloc.h> | ||
| 22 | #include <asm/smp.h> | 22 | #include <asm/smp.h> |
| 23 | #include <asm/bl_bit.h> | 23 | #include <asm/bl_bit.h> |
| 24 | 24 | ||
diff --git a/arch/sh/kernel/kgdb.c b/arch/sh/kernel/kgdb.c index efb6d398dec3..b117781bfea2 100644 --- a/arch/sh/kernel/kgdb.c +++ b/arch/sh/kernel/kgdb.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/irq.h> | 14 | #include <linux/irq.h> |
| 15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
| 16 | #include <asm/cacheflush.h> | 16 | #include <asm/cacheflush.h> |
| 17 | #include <asm/traps.h> | ||
| 17 | 18 | ||
| 18 | /* Macros for single step instruction identification */ | 19 | /* Macros for single step instruction identification */ |
| 19 | #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900) | 20 | #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900) |
diff --git a/arch/sh/kernel/process_32.c b/arch/sh/kernel/process_32.c index f72e3a951588..94273aaf78c1 100644 --- a/arch/sh/kernel/process_32.c +++ b/arch/sh/kernel/process_32.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <asm/mmu_context.h> | 26 | #include <asm/mmu_context.h> |
| 27 | #include <asm/fpu.h> | 27 | #include <asm/fpu.h> |
| 28 | #include <asm/syscalls.h> | 28 | #include <asm/syscalls.h> |
| 29 | #include <asm/switch_to.h> | ||
| 29 | 30 | ||
| 30 | void show_regs(struct pt_regs * regs) | 31 | void show_regs(struct pt_regs * regs) |
| 31 | { | 32 | { |
diff --git a/arch/sh/kernel/smp.c b/arch/sh/kernel/smp.c index a17a14d32340..eaebdf6a5c77 100644 --- a/arch/sh/kernel/smp.c +++ b/arch/sh/kernel/smp.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <asm/smp.h> | 27 | #include <asm/smp.h> |
| 28 | #include <asm/cacheflush.h> | 28 | #include <asm/cacheflush.h> |
| 29 | #include <asm/sections.h> | 29 | #include <asm/sections.h> |
| 30 | #include <asm/setup.h> | ||
| 30 | 31 | ||
| 31 | int __cpu_number_map[NR_CPUS]; /* Map physical to logical */ | 32 | int __cpu_number_map[NR_CPUS]; /* Map physical to logical */ |
| 32 | int __cpu_logical_map[NR_CPUS]; /* Map logical to physical */ | 33 | int __cpu_logical_map[NR_CPUS]; /* Map logical to physical */ |
diff --git a/arch/sh/mm/cache-sh4.c b/arch/sh/mm/cache-sh4.c index 112fea12522a..0e529285b28d 100644 --- a/arch/sh/mm/cache-sh4.c +++ b/arch/sh/mm/cache-sh4.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/highmem.h> | 18 | #include <linux/highmem.h> |
| 19 | #include <asm/pgtable.h> | 19 | #include <asm/pgtable.h> |
| 20 | #include <asm/mmu_context.h> | 20 | #include <asm/mmu_context.h> |
| 21 | #include <asm/cache_insns.h> | ||
| 21 | #include <asm/cacheflush.h> | 22 | #include <asm/cacheflush.h> |
| 22 | 23 | ||
| 23 | /* | 24 | /* |
diff --git a/arch/sh/mm/flush-sh4.c b/arch/sh/mm/flush-sh4.c index 75a17f5bfa14..0b85dd9dd3a7 100644 --- a/arch/sh/mm/flush-sh4.c +++ b/arch/sh/mm/flush-sh4.c | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | #include <linux/mm.h> | 1 | #include <linux/mm.h> |
| 2 | #include <asm/mmu_context.h> | 2 | #include <asm/mmu_context.h> |
| 3 | #include <asm/cache_insns.h> | ||
| 3 | #include <asm/cacheflush.h> | 4 | #include <asm/cacheflush.h> |
| 4 | #include <asm/traps.h> | 5 | #include <asm/traps.h> |
| 5 | 6 | ||
diff --git a/arch/sh/mm/sram.c b/arch/sh/mm/sram.c index bc156ec4545e..2d8fa718d55e 100644 --- a/arch/sh/mm/sram.c +++ b/arch/sh/mm/sram.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | */ | 9 | */ |
| 10 | #include <linux/init.h> | 10 | #include <linux/init.h> |
| 11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/errno.h> | ||
| 12 | #include <asm/sram.h> | 13 | #include <asm/sram.h> |
| 13 | 14 | ||
| 14 | /* | 15 | /* |
