6b7feecb2f
This patch does some obvious code cleanups in the iSeries headers files. - simplifies the bodies of lots of inline functions - parenthesises a macros result - removes C++ wrapping - adds "extern" to some function declarations There are no semantic changes. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
12 lines
350 B
C
12 lines
350 B
C
#ifndef __ISERIES_IRQ_H__
|
|
#define __ISERIES_IRQ_H__
|
|
|
|
extern void iSeries_init_IRQ(void);
|
|
extern int iSeries_allocate_IRQ(HvBusNumber, HvSubBusNumber, HvAgentId);
|
|
extern int iSeries_assign_IRQ(int, HvBusNumber, HvSubBusNumber, HvAgentId);
|
|
extern void iSeries_activate_IRQs(void);
|
|
|
|
extern int XmPciLpEvent_init(void);
|
|
|
|
#endif /* __ISERIES_IRQ_H__ */
|