1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-11-10 08:07:05 +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 { enum _CHIP_TYPE {
NULL_CHIP_TYPE, NULL_CHIP_TYPE,
//RTL8188E, RTL8188E,
//RTL8192E, RTL8192E,
RTL8812, RTL8812,
RTL8821, /* RTL8811 */ RTL8821, /* RTL8811 */
//RTL8723B, RTL8723B,
RTL8814A, RTL8814A,
//RTL8703B, RTL8703B,
//RTL8188F, RTL8188F,
//RTL8188GTV, RTL8188GTV,
//RTL8822B, RTL8822B,
//RTL8723D, RTL8723D,
//RTL8821C, RTL8821C,
//RTL8710B, RTL8710B,
//RTL8192F, RTL8192F,
MAX_CHIP_TYPE MAX_CHIP_TYPE
}; };