To: linus, akpm, B.Zolnierkiewicz@elka.pw.edu.pl Cc: lkml Subject: [PATCH] m68k IDE compiler bug From: Roman Zippel IDE: Avoid compiler bug in gcc 3.2 (from Roman Zippel) --- include/linux/ide.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/ide.h +++ b/include/linux/ide.h @@ -513,7 +513,7 @@ typedef union { * sense_key : Sense key of the last failed packet command */ typedef union { - unsigned all :8; + u8 all; struct { #if defined(__LITTLE_ENDIAN_BITFIELD) unsigned ili :1;