mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-11 16:24:26 +08:00
e44b894190
There are 3 interrupt groups each with its own status/mask registers. We use a separate struct irq_chip for each interrupt group and handle interrupts in two stages or levels: level 1 selects the appropriate struct irq_chip, and level 2 selects individual interrupts within that irq_chip. Signed-off-by: Dale Farnsworth <dale@farnsworth.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
10 lines
184 B
C
10 lines
184 B
C
#ifndef __MV64X60_H__
|
|
#define __MV64X60_H__
|
|
|
|
#include <linux/init.h>
|
|
|
|
extern void __init mv64x60_init_irq(void);
|
|
extern unsigned int mv64x60_get_irq(void);
|
|
|
|
#endif /* __MV64X60_H__ */
|