Warning #108: implicitly-signed bit field of length 1

A one bit bit field should be declared as unsigned.

Example #1: from Linux-2.6-rc3 file drivers/media/video/cx88/cx88.h

    206         int                     blackbird:1;
    207         int                     dvb:1;
    208 };

Example #1b: from Linux-2.6-rc3 file include/linux/init.h

    155  */
    156 #define module_init(x)  __initcall(x);
    157

How to resolve:

Either the semi-colon should be removed from line 1400 net/irda/ircomm/ircomm_tty.c or from line 156 in include/linux/init.h file

SourceForge.net Logo