1/*
2 * BK Id: SCCS/s.xics.h 1.5 05/17/01 18:14:22 cort
3 */
4/*
5 * arch/ppc/kernel/xics.h
6 *
7 * Copyright 2000 IBM Corporation.
8 *
9 *  This program is free software; you can redistribute it and/or
10 *  modify it under the terms of the GNU General Public License
11 *  as published by the Free Software Foundation; either version
12 *  2 of the License, or (at your option) any later version.
13 */
14
15#ifndef _PPC_KERNEL_XICS_H
16#define _PPC_KERNEL_XICS_H
17
18extern struct hw_interrupt_type xics_pic;
19extern struct hw_interrupt_type xics_8259_pic;
20
21void xics_init_IRQ(void);
22int xics_get_irq(struct pt_regs *);
23
24#endif /* _PPC_KERNEL_XICS_H */
25