From: Christian Borntraeger <[EMAIL PROTECTED]> The header file for external interrupts uses the _u16 type. Make sure that _u16 is defined by including linux/types.h. This prevents compile failures, if asm/s390_ext.h is the first include file.
Signed-off-by: Christian Borntraeger <[EMAIL PROTECTED]> Signed-off-by: Martin Schwidefsky <[EMAIL PROTECTED]> --- include/asm-s390/s390_ext.h | 2 ++ 1 file changed, 2 insertions(+) Index: quilt-2.6/include/asm-s390/s390_ext.h =================================================================== --- quilt-2.6.orig/include/asm-s390/s390_ext.h +++ quilt-2.6/include/asm-s390/s390_ext.h @@ -10,6 +10,8 @@ * Martin Schwidefsky ([EMAIL PROTECTED]) */ +#include <linux/types.h> + typedef void (*ext_int_handler_t)(__u16 code); /* -- blue skies, Martin. "Reality continues to ruin my life." - Calvin. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/