2019-05-29 14:18:00 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-07-11 01:05:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Regents of the University of California
|
|
|
|
* Copyright (C) 2017 SiFive
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_RISCV_IRQ_H
|
|
|
|
#define _ASM_RISCV_IRQ_H
|
|
|
|
|
|
|
|
#define NR_IRQS 0
|
|
|
|
|
|
|
|
void riscv_timer_interrupt(void);
|
2018-08-04 08:23:13 +00:00
|
|
|
void riscv_software_interrupt(void);
|
2017-07-11 01:05:09 +00:00
|
|
|
|
|
|
|
#include <asm-generic/irq.h>
|
|
|
|
|
|
|
|
#endif /* _ASM_RISCV_IRQ_H */
|