rtl8192de: Recognize 92D E-CUT version.
authorForest Bond <forest.bond@rapidrollout.com>
Sun, 8 Apr 2012 19:12:34 +0000 (14:12 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Thu, 12 Apr 2012 19:06:06 +0000 (15:06 -0400)
The chip version constant (0xCC33) was taken from version 0001.0105.2011
of the GPL vendor driver.  Note that this driver version also ships a
firmware update, but I am unsure if it is required for E-CUT chips to
function properly.

A nearby spelling error was also corrected.

Signed-off-by: Forest Bond <forest.bond@rapidrollout.com>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rtlwifi/rtl8192de/hw.c

index 509f5af..b338d52 100644 (file)
@@ -1743,9 +1743,13 @@ static void _rtl92de_efuse_update_chip_version(struct ieee80211_hw *hw)
                chipver |= CHIP_92D_D_CUT;
                RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "D-CUT!!!\n");
                break;
+       case 0xCC33:
+               chipver |= CHIP_92D_E_CUT;
+               RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, "E-CUT!!!\n");
+               break;
        default:
                chipver |= CHIP_92D_D_CUT;
-               RT_TRACE(rtlpriv, COMP_INIT, DBG_EMERG, "Unkown CUT!\n");
+               RT_TRACE(rtlpriv, COMP_INIT, DBG_EMERG, "Unknown CUT!\n");
                break;
        }
        rtlpriv->rtlhal.version = chipver;