gcc 3.2 complained about the missing __volatile and extra tokens after #endif.

This commit is contained in:
dogcow 2003-07-05 06:53:08 +00:00
parent 5ae48961f9
commit ccd442eae3
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pxa2x0_intr.h,v 1.3 2003/06/05 13:48:28 scw Exp $ */
/* $NetBSD: pxa2x0_intr.h,v 1.4 2003/07/05 06:53:08 dogcow Exp $ */
/* Derived from i80321_intr.h */
@ -174,8 +174,8 @@ void pxa2x0_irq_handler(void *);
void *pxa2x0_intr_establish(int irqno, int level,
int (*func)(void *), void *cookie);
void pxa2x0_update_intr_masks(int irqno, int level);
extern int current_spl_level;
extern __volatile int current_spl_level;
#endif /* ! _LOCORE */
#endif _PXA2X0_INTR_H_
#endif /* _PXA2X0_INTR_H_ */