mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 13:43:55 +08:00
1e364921b0
Register the Xilinx driver as the root interrupt controller using the GENERIC_IRQ_MULTI_HANDLER API, instead of the arch-specific hack. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Stefan Asserhall <stefan.asserhall@xilinx.com> [maz: repainted commit message] Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/e6c6595a81f662bf839cee3109d0fa58a596ea47.1646380284.git.michal.simek@xilinx.com
15 lines
274 B
C
15 lines
274 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
*/
|
|
|
|
#ifndef _ASM_MICROBLAZE_IRQ_H
|
|
#define _ASM_MICROBLAZE_IRQ_H
|
|
|
|
#include <asm-generic/irq.h>
|
|
|
|
struct pt_regs;
|
|
extern void do_IRQ(struct pt_regs *regs);
|
|
|
|
#endif /* _ASM_MICROBLAZE_IRQ_H */
|