diff options
| -rw-r--r-- | arch/mips/mips-boards/generic/amon.c | 4 | ||||
| -rw-r--r-- | include/asm-mips/gic.h | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/mips-boards/generic/amon.c b/arch/mips/mips-boards/generic/amon.c index b7633fda4180..96236bf33838 100644 --- a/arch/mips/mips-boards/generic/amon.c +++ b/arch/mips/mips-boards/generic/amon.c  | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | int amon_cpu_avail(int cpu) | 29 | int amon_cpu_avail(int cpu) | 
| 30 | { | 30 | { | 
| 31 | struct cpulaunch *launch = (struct cpulaunch *)KSEG0ADDR(CPULAUNCH); | 31 | struct cpulaunch *launch = (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH); | 
| 32 | 32 | ||
| 33 | if (cpu < 0 || cpu >= NCPULAUNCH) { | 33 | if (cpu < 0 || cpu >= NCPULAUNCH) { | 
| 34 | pr_debug("avail: cpu%d is out of range\n", cpu); | 34 | pr_debug("avail: cpu%d is out of range\n", cpu); | 
| @@ -53,7 +53,7 @@ void amon_cpu_start(int cpu, | |||
| 53 | unsigned long gp, unsigned long a0) | 53 | unsigned long gp, unsigned long a0) | 
| 54 | { | 54 | { | 
| 55 | volatile struct cpulaunch *launch = | 55 | volatile struct cpulaunch *launch = | 
| 56 | (struct cpulaunch *)KSEG0ADDR(CPULAUNCH); | 56 | (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH); | 
| 57 | 57 | ||
| 58 | if (!amon_cpu_avail(cpu)) | 58 | if (!amon_cpu_avail(cpu)) | 
| 59 | return; | 59 | return; | 
diff --git a/include/asm-mips/gic.h b/include/asm-mips/gic.h index 3a492f225f00..954807d9d66a 100644 --- a/include/asm-mips/gic.h +++ b/include/asm-mips/gic.h  | |||
| @@ -24,8 +24,8 @@ | |||
| 24 | 24 | ||
| 25 | #define MSK(n) ((1 << (n)) - 1) | 25 | #define MSK(n) ((1 << (n)) - 1) | 
| 26 | #define REG32(addr) (*(volatile unsigned int *) (addr)) | 26 | #define REG32(addr) (*(volatile unsigned int *) (addr)) | 
| 27 | #define REG(base, offs) REG32((unsigned int)(base) + offs##_##OFS) | 27 | #define REG(base, offs) REG32((unsigned long)(base) + offs##_##OFS) | 
| 28 | #define REGP(base, phys) REG32((unsigned int)(base) + (phys)) | 28 | #define REGP(base, phys) REG32((unsigned long)(base) + (phys)) | 
| 29 | 29 | ||
| 30 | /* Accessors */ | 30 | /* Accessors */ | 
| 31 | #define GIC_REG(segment, offset) \ | 31 | #define GIC_REG(segment, offset) \ | 
