mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
baec970aa5
Add support for the Nintendo 64. Signed-off-by: Lauri Kasanen <cand@gmx.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17 lines
258 B
C
17 lines
258 B
C
// 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();
|
|
}
|