forked from Minki/linux
rtl8192de: Recognize 92D E-CUT version.
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>
This commit is contained in:
parent
7d486fdeb0
commit
ec71a07d1c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user