The patch titled ac97_codec: make bitfield unsigned has been added to the -mm tree. Its filename is ac97_codec-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: ac97_codec: make bitfield unsigned From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Make a 1-bit bitfield unsigned (no space for sign bit). Removes 24 sparse warnings from this one file: include/linux/ac97_codec.h:262:13: error: dubious one-bit signed bitfield Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/ac97_codec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/ac97_codec.h~ac97_codec-make-bitfield-unsigned include/linux/ac97_codec.h --- a/include/linux/ac97_codec.h~ac97_codec-make-bitfield-unsigned +++ a/include/linux/ac97_codec.h @@ -259,7 +259,7 @@ struct ac97_codec { int type; u32 model; - int modem:1; + unsigned int modem:1; struct ac97_ops *codec_ops; _ 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