Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.14 16 lines 258 B view raw
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * N64 IRQ 4 * 5 * Copyright (C) 2021 Lauri Kasanen 6 */ 7#include <linux/export.h> 8#include <linux/interrupt.h> 9#include <linux/irq.h> 10 11#include <asm/irq_cpu.h> 12 13void __init arch_init_irq(void) 14{ 15 mips_cpu_irq_init(); 16}