1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-09-20 05:00:36 +00:00

fixed init does not detect 8812 correctly because of unaligned enum values

This commit is contained in:
fariouche 2019-09-02 22:30:51 +02:00
parent 5386896ef8
commit bedff3150b

View File

@ -25,20 +25,20 @@ enum RTL871X_HCI_TYPE {
enum _CHIP_TYPE {
NULL_CHIP_TYPE,
//RTL8188E,
//RTL8192E,
RTL8188E,
RTL8192E,
RTL8812,
RTL8821, /* RTL8811 */
//RTL8723B,
RTL8723B,
RTL8814A,
//RTL8703B,
//RTL8188F,
//RTL8188GTV,
//RTL8822B,
//RTL8723D,
//RTL8821C,
//RTL8710B,
//RTL8192F,
RTL8703B,
RTL8188F,
RTL8188GTV,
RTL8822B,
RTL8723D,
RTL8821C,
RTL8710B,
RTL8192F,
MAX_CHIP_TYPE
};