aboutsummaryrefslogtreecommitdiffstats
path: root/arch/score/include/asm
diff options
context:
space:
mode:
authorChen Liqin <liqin.chen@sunplusct.com>2009-08-30 00:26:32 -0400
committerChen Liqin <liqin.chen@sunplusct.com>2009-08-30 00:26:32 -0400
commitd8aa899bb27ad7879ab9e621365e04ada2745a65 (patch)
treed853e70141b93476431d09bba812802c63c9ba10 /arch/score/include/asm
parentd27eadc7612404b06f99888c02726ab7d5036e0f (diff)
score: remove unused code, add include files in .c
Diffstat (limited to 'arch/score/include/asm')
-rw-r--r--arch/score/include/asm/elf.h18
-rw-r--r--arch/score/include/asm/irqflags.h2
2 files changed, 11 insertions, 9 deletions
diff --git a/arch/score/include/asm/elf.h b/arch/score/include/asm/elf.h
index 832436375ac3..43526d9fda93 100644
--- a/arch/score/include/asm/elf.h
+++ b/arch/score/include/asm/elf.h
@@ -1,9 +1,8 @@
1#ifndef _ASM_SCORE_ELF_H 1#ifndef _ASM_SCORE_ELF_H
2#define _ASM_SCORE_ELF_H 2#define _ASM_SCORE_ELF_H
3 3
4/* ELF register definitions */ 4#include <linux/ptrace.h>
5#define ELF_NGREG 45 5
6#define ELF_NFPREG 33
7#define EM_SCORE7 135 6#define EM_SCORE7 135
8 7
9/* Relocation types. */ 8/* Relocation types. */
@@ -30,11 +29,15 @@
30#define R_SCORE_IMM30 20 29#define R_SCORE_IMM30 20
31#define R_SCORE_IMM32 21 30#define R_SCORE_IMM32 21
32 31
33typedef unsigned long elf_greg_t; 32/* ELF register definitions */
34typedef elf_greg_t elf_gregset_t[ELF_NGREG]; 33typedef unsigned long elf_greg_t;
34
35#define ELF_NGREG (sizeof(struct pt_regs) / sizeof(elf_greg_t))
36typedef elf_greg_t elf_gregset_t[ELF_NGREG];
35 37
36typedef double elf_fpreg_t; 38/* Score does not have fp regs. */
37typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; 39typedef double elf_fpreg_t;
40typedef elf_fpreg_t elf_fpregset_t;
38 41
39#define elf_check_arch(x) ((x)->e_machine == EM_SCORE7) 42#define elf_check_arch(x) ((x)->e_machine == EM_SCORE7)
40 43
@@ -57,6 +60,7 @@ do { \
57struct task_struct; 60struct task_struct;
58struct pt_regs; 61struct pt_regs;
59 62
63#define CORE_DUMP_USE_REGSET
60#define USE_ELF_CORE_DUMP 64#define USE_ELF_CORE_DUMP
61#define ELF_EXEC_PAGESIZE PAGE_SIZE 65#define ELF_EXEC_PAGESIZE PAGE_SIZE
62 66
diff --git a/arch/score/include/asm/irqflags.h b/arch/score/include/asm/irqflags.h
index 92eeb33dd72b..690a6cae7294 100644
--- a/arch/score/include/asm/irqflags.h
+++ b/arch/score/include/asm/irqflags.h
@@ -17,8 +17,6 @@
17 "nop;" \ 17 "nop;" \
18 "nop;" \ 18 "nop;" \
19 "nop;" \ 19 "nop;" \
20 "ldi r9, 0x1;" \
21 "and %0, %0, r9;" \
22 : "=r" (x) \ 20 : "=r" (x) \
23 : \ 21 : \
24 : "r8", "r9" \ 22 : "r8", "r9" \