The patch titled make 1-bit bitfields unsigned has been added to the -mm tree. Its filename is make-1-bit-bitfields-unsigned.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: make 1-bit bitfields unsigned From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Keeps sparse happy. Signed-of-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Cc: Karsten Keil <kkeil@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/isdn/hisax/isdnhdlc.h | 8 ++++---- drivers/media/dvb/frontends/l64781.c | 2 +- sound/arm/sa11xx-uda1341.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff -puN drivers/isdn/hisax/isdnhdlc.h~make-1-bit-bitfields-unsigned drivers/isdn/hisax/isdnhdlc.h --- a/drivers/isdn/hisax/isdnhdlc.h~make-1-bit-bitfields-unsigned +++ a/drivers/isdn/hisax/isdnhdlc.h @@ -41,10 +41,10 @@ struct isdnhdlc_vars { unsigned char shift_reg; unsigned char ffvalue; - int data_received:1; // set if transferring data - int dchannel:1; // set if D channel (send idle instead of flags) - int do_adapt56:1; // set if 56K adaptation - int do_closing:1; // set if in closing phase (need to send CRC + flag + unsigned int data_received:1; // set if transferring data + unsigned int dchannel:1; // set if D channel (send idle instead of flags) + unsigned int do_adapt56:1; // set if 56K adaptation + unsigned int do_closing:1; // set if in closing phase (need to send CRC + flag }; diff -puN drivers/media/dvb/frontends/l64781.c~make-1-bit-bitfields-unsigned drivers/media/dvb/frontends/l64781.c --- a/drivers/media/dvb/frontends/l64781.c~make-1-bit-bitfields-unsigned +++ a/drivers/media/dvb/frontends/l64781.c @@ -36,7 +36,7 @@ struct l64781_state { struct dvb_frontend frontend; /* private demodulator data */ - int first:1; + unsigned int first:1; }; #define dprintk(args...) \ diff -puN sound/arm/sa11xx-uda1341.c~make-1-bit-bitfields-unsigned sound/arm/sa11xx-uda1341.c --- a/sound/arm/sa11xx-uda1341.c~make-1-bit-bitfields-unsigned +++ a/sound/arm/sa11xx-uda1341.c @@ -125,7 +125,7 @@ struct audio_stream { #else dma_regs_t *dma_regs; /* points to our DMA registers */ #endif - int active:1; /* we are using this stream for transfer now */ + unsigned int active:1; /* we are using this stream for transfer now */ int period; /* current transfer period */ int periods; /* current count of periods registerd in the DMA engine */ int tx_spin; /* are we recoding - flag used to do DMA trans. for sync */ _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are usb-idmouse-cleanup.patch usb-writing_usb_driver-free-urb-cleanup.patch usb-pcwd_usb-free-urb-cleanup.patch usb-iforce-usb-free-urb-cleanup.patch usb-usb-gigaset-free-kill-urb-cleanup.patch usb-cinergyt2-free-kill-urb-cleanup.patch usb-ttusb_dec-free-urb-cleanup.patch usb-pvrusb2-hdw-free-unlink-urb-cleanup.patch usb-pvrusb2-io-free-urb-cleanup.patch usb-pwc-if-free-urb-cleanup.patch usb-quickcam_messenger-free-urb-cleanup.patch usb-irda-usb-free-urb-cleanup.patch usb-zd1201-free-urb-cleanup.patch usb-ati_remote-free-urb-cleanup.patch usb-ati_remote2-free-urb-cleanup.patch usb-hid-core-free-urb-cleanup.patch usb-usbkbd-free-urb-cleanup.patch usb-auerswald-free-kill-urb-cleanup-and-memleak-fix.patch usb-phidgetkit-free-urb-cleanup.patch usb-legousbtower-free-kill-urb-cleanup.patch usb-phidgetmotorcontrol-free-urb-cleanup.patch usb-catc-free-urb-cleanup.patch usb-ftdi_sio-kill-urb-cleanup.patch usb-io_edgeport-kill-urb-cleanup.patch usb-keyspan-free-urb-cleanup.patch usb-kobil_sct-kill-urb-cleanup.patch usb-mct_u232-free-urb-cleanup.patch usb-navman-kill-urb-cleanup.patch usb-usb-serial-free-urb-cleanup.patch usb-visor-kill-urb-cleanup.patch usb-usbmidi-kill-urb-cleanup.patch usb-usbmixer-free-kill-urb-cleanup.patch i2lib-unused-variable-cleanup.patch make-1-bit-bitfields-unsigned.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html