The patch titled oss/via: make bitfield unsigned has been added to the -mm tree. Its filename is oss-via-make-bitfield-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: oss/via: make bitfield unsigned From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Make a 1-bit field unsigned like all of the others near it. sound/oss/via82cxxx_audio.c:311:21: error: dubious one-bit signed bitfield Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- sound/oss/via82cxxx_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN sound/oss/via82cxxx_audio.c~oss-via-make-bitfield-unsigned sound/oss/via82cxxx_audio.c --- a/sound/oss/via82cxxx_audio.c~oss-via-make-bitfield-unsigned +++ a/sound/oss/via82cxxx_audio.c @@ -309,7 +309,7 @@ struct via_info { unsigned sixchannel: 1; /* 8233/35 with 6 channel support */ unsigned volume: 1; - int locked_rate : 1; + unsigned locked_rate : 1; int mixer_vol; /* 8233/35 volume - not yet implemented */ _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch patch-kernel-acct-fix-function-definition.patch zlib-inflate-fix-function-definitions.patch add-poisonh-and-patch-primary-users.patch update-2-drivers-for-poisonh.patch poison-add-use-more-constants.patch fix-kernel-doc-in-kernel-dir.patch pi-futex-rt-mutex-docs.patch ioat-fix-sparse-ulong-warning.patch git-pcmcia.patch git-scsi-misc.patch aic7-cleanup-module_parm_desc-strings.patch qla1280-fix-section-mismatch-warnings.patch areca-raid-linux-scsi-driver.patch dc395x-fix-printk-format-warning.patch git-watchdog.patch acpi-identify-which-device-is-not-power-manageable.patch sound-fix-cs4232-section-mismatch.patch ac97_codec-make-bitfield-unsigned.patch oss-via-make-bitfield-unsigned.patch videocodec-make-1-bit-fields-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