Commit b7e4226e authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Build fix: Fix irq flags type

Though from a hardware perspective it would be sensible to use only a
32-bit unsigned int type Linux defines interrupt flags to be stored in
an unsigned long and nothing else.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 95b866d5
...@@ -238,7 +238,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) ...@@ -238,7 +238,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
case FPC_EIR: { /* implementation / version register */ case FPC_EIR: { /* implementation / version register */
unsigned int flags; unsigned int flags;
#ifdef CONFIG_MIPS_MT_SMTC #ifdef CONFIG_MIPS_MT_SMTC
unsigned int irqflags; unsigned long irqflags;
unsigned int mtflags; unsigned int mtflags;
#endif /* CONFIG_MIPS_MT_SMTC */ #endif /* CONFIG_MIPS_MT_SMTC */
......
...@@ -556,7 +556,7 @@ void mipsmt_prepare_cpus(void) ...@@ -556,7 +556,7 @@ void mipsmt_prepare_cpus(void)
void __cpuinit smtc_boot_secondary(int cpu, struct task_struct *idle) void __cpuinit smtc_boot_secondary(int cpu, struct task_struct *idle)
{ {
extern u32 kernelsp[NR_CPUS]; extern u32 kernelsp[NR_CPUS];
long flags; unsigned long flags;
int mtflags; int mtflags;
LOCK_MT_PRA(); LOCK_MT_PRA();
...@@ -753,7 +753,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) ...@@ -753,7 +753,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action)
{ {
int tcstatus; int tcstatus;
struct smtc_ipi *pipi; struct smtc_ipi *pipi;
long flags; unsigned long flags;
int mtflags; int mtflags;
if (cpu == smp_processor_id()) { if (cpu == smp_processor_id()) {
...@@ -975,7 +975,7 @@ static irqreturn_t ipi_interrupt(int irq, void *dev_idm) ...@@ -975,7 +975,7 @@ static irqreturn_t ipi_interrupt(int irq, void *dev_idm)
struct smtc_ipi *pipi; struct smtc_ipi *pipi;
unsigned long tcstatus; unsigned long tcstatus;
int sent; int sent;
long flags; unsigned long flags;
unsigned int mtflags; unsigned int mtflags;
unsigned int vpflags; unsigned int vpflags;
......
...@@ -1462,7 +1462,7 @@ set_c0_##name(unsigned int set) \ ...@@ -1462,7 +1462,7 @@ set_c0_##name(unsigned int set) \
{ \ { \
unsigned int res; \ unsigned int res; \
unsigned int omt; \ unsigned int omt; \
unsigned int flags; \ unsigned long flags; \
\ \
local_irq_save(flags); \ local_irq_save(flags); \
omt = __dmt(); \ omt = __dmt(); \
...@@ -1480,7 +1480,7 @@ clear_c0_##name(unsigned int clear) \ ...@@ -1480,7 +1480,7 @@ clear_c0_##name(unsigned int clear) \
{ \ { \
unsigned int res; \ unsigned int res; \
unsigned int omt; \ unsigned int omt; \
unsigned int flags; \ unsigned long flags; \
\ \
local_irq_save(flags); \ local_irq_save(flags); \
omt = __dmt(); \ omt = __dmt(); \
...@@ -1498,7 +1498,7 @@ change_c0_##name(unsigned int change, unsigned int new) \ ...@@ -1498,7 +1498,7 @@ change_c0_##name(unsigned int change, unsigned int new) \
{ \ { \
unsigned int res; \ unsigned int res; \
unsigned int omt; \ unsigned int omt; \
unsigned int flags; \ unsigned long flags; \
\ \
local_irq_save(flags); \ local_irq_save(flags); \
\ \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment