diff options
author | Lauri Kasanen <cand@gmx.com> | 2021-01-13 18:11:23 +0300 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2021-01-22 13:40:00 +0300 |
commit | baec970aa5ba11099ad7a91773350c91fb2113f0 (patch) | |
tree | a29768bc527cde6e1d1ee18aa6f030067cbc80d1 /arch/mips/n64/irq.c | |
parent | 65ce6197ed403b14f4efc70d509e07ac608a1ac5 (diff) | |
download | linux-baec970aa5ba11099ad7a91773350c91fb2113f0.tar.xz |
mips: Add N64 machine type
Add support for the Nintendo 64.
Signed-off-by: Lauri Kasanen <cand@gmx.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/n64/irq.c')
-rw-r--r-- | arch/mips/n64/irq.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/mips/n64/irq.c b/arch/mips/n64/irq.c new file mode 100644 index 000000000000..1861e962db42 --- /dev/null +++ b/arch/mips/n64/irq.c @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * N64 IRQ + * + * Copyright (C) 2021 Lauri Kasanen + */ +#include <linux/export.h> +#include <linux/interrupt.h> +#include <linux/irq.h> + +#include <asm/irq_cpu.h> + +void __init arch_init_irq(void) +{ + mips_cpu_irq_init(); +} |