This is a note to let you know that I've just added the patch titled rtlwifi: rtl8188ee: Fix typo in code to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: rtlwifi-rtl8188ee-fix-typo-in-code.patch and it can be found in the queue-3.13 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From f699273d6a624266ebc9198774f06ee64a3847a1 Mon Sep 17 00:00:00 2001 From: Larry Finger <Larry.Finger@xxxxxxxxxxxx> Date: Mon, 25 Nov 2013 10:45:28 -0600 Subject: rtlwifi: rtl8188ee: Fix typo in code From: Larry Finger <Larry.Finger@xxxxxxxxxxxx> commit f699273d6a624266ebc9198774f06ee64a3847a1 upstream. The static analyser "cppcheck" shows the following typo: drivers/net/wireless/rtlwifi/rtl8188ee/dm.c:1081]: (style) Same expression on both sides of '!='. Signed-off-by: Larry Finger <Larry.Finger@xxxxxxxxxxxx> Reported-by: David Binderman <dcb314@xxxxxxxxxxx> Cc: David Binderman <dcb314@xxxxxxxxxxx> Signed-off-by: John W. Linville <linville@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/wireless/rtlwifi/rtl8188ee/dm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/wireless/rtlwifi/rtl8188ee/dm.c +++ b/drivers/net/wireless/rtlwifi/rtl8188ee/dm.c @@ -1078,7 +1078,7 @@ static void rtl88e_dm_txpower_tracking_c rtldm->swing_flag_ofdm = true; } - if (rtldm->swing_idx_cck != rtldm->swing_idx_cck) { + if (rtldm->swing_idx_cck_cur != rtldm->swing_idx_cck) { rtldm->swing_idx_cck_cur = rtldm->swing_idx_cck; rtldm->swing_flag_cck = true; } Patches currently in stable-queue which might be from Larry.Finger@xxxxxxxxxxxx are queue-3.13/b43-fix-lockdep-splat.patch queue-3.13/staging-r8712u-set-device-type-to-wlan.patch queue-3.13/rtlwifi-redo-register-save-locations.patch queue-3.13/rtlwifi-rtl8192cu-add-new-device-id.patch queue-3.13/rtlwifi-rtl8192c-add-new-definitions-in-the-dm_common-header.patch queue-3.13/rtlwifi-rtl8192c-update-dynamic-gain-calculations.patch queue-3.13/b43-fix-the-wrong-assignment-of-status.freq-in-b43_rx.patch queue-3.13/b43-fix-unload-oops-if-firmware-is-not-available.patch queue-3.13/rtlwifi-rtl8192cu-add-new-firmware.patch queue-3.13/b43legacy-fix-unload-oops-if-firmware-is-not-available.patch queue-3.13/rtlwifi-rtl8192cu-fix-some-code-in-rf-handling.patch queue-3.13/rtlwifi-set-the-link-state.patch queue-3.13/rtlwifi-increase-the-rx-queue-length-for-usb-drivers.patch queue-3.13/rtlwifi-rtl8192c-add-routines-to-save-restore-power-index-registers.patch queue-3.13/rtlwifi-rtl8192c-prevent-reconnect-attempts-if-not-connected.patch queue-3.13/rtlwifi-rtl8188ee-fix-typo-in-code.patch queue-3.13/rtlwifi-rtl8192cu-update-the-power-index-registers.patch queue-3.13/rtlwifi-add-missing-code-to-pwdb-statics-routine.patch queue-3.13/rtlwifi-update-beacon-statistics-for-usb-driver.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html