mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 10:16:42 +07:00
[MIPS] Malta: Fix build for non-MIPS32/64 configuration.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
12a0a703b3
commit
0118c3ca9e
@ -212,23 +212,23 @@ static inline unsigned int irq_ffs(unsigned int pending)
|
||||
unsigned int a0 = 7;
|
||||
unsigned int t0;
|
||||
|
||||
t0 = s0 & 0xf000;
|
||||
t0 = pending & 0xf000;
|
||||
t0 = t0 < 1;
|
||||
t0 = t0 << 2;
|
||||
a0 = a0 - t0;
|
||||
s0 = s0 << t0;
|
||||
pending = pending << t0;
|
||||
|
||||
t0 = s0 & 0xc000;
|
||||
t0 = pending & 0xc000;
|
||||
t0 = t0 < 1;
|
||||
t0 = t0 << 1;
|
||||
a0 = a0 - t0;
|
||||
s0 = s0 << t0;
|
||||
pending = pending << t0;
|
||||
|
||||
t0 = s0 & 0x8000;
|
||||
t0 = pending & 0x8000;
|
||||
t0 = t0 < 1;
|
||||
//t0 = t0 << 2;
|
||||
a0 = a0 - t0;
|
||||
//s0 = s0 << t0;
|
||||
//pending = pending << t0;
|
||||
|
||||
return a0;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user