mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
exceptions: fix clang warning for msr arg
Signed-off-by: Ferdinand Bachmann <theferdi265@gmail.com>
This commit is contained in:
parent
505eb4ce4f
commit
afc5813635
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ void exc_fiq(u64 *regs)
|
|||
|
||||
if (timer_ctl == 0x5) {
|
||||
uart_puts(" timer IRQ, masking");
|
||||
msr(CNTP_CTL_EL0, 7);
|
||||
msr(CNTP_CTL_EL0, 7L);
|
||||
}
|
||||
|
||||
// print_regs(regs);
|
||||
|
|
Loading…
Reference in a new issue