]> Git Repo - J-linux.git/blob - arch/mips/ralink/irq-gic.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / arch / mips / ralink / irq-gic.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *
4  * Copyright (C) 2015 Nikolay Martynov <[email protected]>
5  * Copyright (C) 2015 John Crispin <[email protected]>
6  */
7
8 #include <linux/init.h>
9
10 #include <linux/of.h>
11 #include <linux/irqchip.h>
12 #include <asm/mips-cps.h>
13 #include <asm/time.h>
14
15 int get_c0_perfcount_int(void)
16 {
17         return gic_get_c0_perfcount_int();
18 }
19 EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
20
21 void __init arch_init_irq(void)
22 {
23         irqchip_init();
24 }
This page took 0.026892 seconds and 4 git commands to generate.