The patch titled oss/via: make bitfield unsigned has been removed from the -mm tree. Its filename is oss-via-make-bitfield-unsigned.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 git-acpi.patch acpi-identify-which-device-is-not-power-manageable.patch videocodec-make-1-bit-fields-unsigned.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 - 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