The patch titled mac80211: fix 1-bit bitfield to unsigned has been removed from the -mm tree. Its filename was mac80211-fix-1-bit-bitfield-to-unsigned.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: mac80211: fix 1-bit bitfield to unsigned From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix 17 of these pairs of sparse warnings since it's difficult for a 1-bit bitfield to have both a value bit and a sign bit. net/mac80211/sta_info.h:105:16: error: dubious bitfield without explicit `signed' or `unsigned' net/mac80211/sta_info.h:107:15: error: dubious bitfield without explicit `signed' or `unsigned' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/mac80211/sta_info.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN net/mac80211/sta_info.h~mac80211-fix-1-bit-bitfield-to-unsigned net/mac80211/sta_info.h --- a/net/mac80211/sta_info.h~mac80211-fix-1-bit-bitfield-to-unsigned +++ a/net/mac80211/sta_info.h @@ -102,9 +102,9 @@ struct sta_info { #ifdef CONFIG_MAC80211_DEBUGFS int debugfs_registered; #endif - int assoc_ap:1; /* whether this is an AP that we are - * associated with as a client */ - int dls_sta:1; /* whether this stations is a DLS peer of us */ + unsigned int assoc_ap:1; /* whether this is an AP that we are + * associated with as a client */ + unsigned int dls_sta:1; /* whether this stations is a DLS peer of us */ #define DLS_STATUS_OK 0 #define DLS_STATUS_NOLINK 1 _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch toshica_acpi-fix-section-mismatch-in-allyesconfig.patch git-acpi.patch romfs-printk-format-warnings.patch mtd-use-null-for-pointer.patch add-pci_try_set_mwi.patch git-unionfs.patch git-wireless.patch add-pci_try_set_mwi-prism54pci.patch git-ipwireless_cs.patch x86_64-use-null-for-pointer.patch mm-merge-populate-and-nopage-into-fault-fixes-nonlinear.patch doc-kernel-parameters-use-x86-32-tag-instead-of-ia-32.patch add-argv_split-fix.patch add-common-orderly_poweroff-fix.patch kconfig-no-strange-misc-devices.patch afs-drop-explicit-extern.patch add-printktime-option-deprecate-time.patch fs-clarify-dummy-member-in-struct.patch sony-laptop-use-null-for-pointer.patch hugetlbfs-use-lib-parser-fix-docs.patch report-that-kernel-is-tainted-if-there-were-an-oops-before.patch schedstats-fix-printk-format.patch kernel-doc-add-tools-doc-in-makefile.patch kernel-doc-fix-unnamed-struct-union-warning.patch kernel-doc-strip-c99-comments.patch kernel-doc-fix-leading-dot-in-man-mode-output.patch kernel-doc-fix-leading-dot-in-man-mode-output-fix.patch profile-likely-unlikely-macros.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