From bedff3150b5cd8b35f13fb4c7b6258cf4059e394 Mon Sep 17 00:00:00 2001 From: fariouche Date: Mon, 2 Sep 2019 22:30:51 +0200 Subject: [PATCH] fixed init does not detect 8812 correctly because of unaligned enum values --- include/hal_intf.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/hal_intf.h b/include/hal_intf.h index 71cbe4f..e746784 100644 --- a/include/hal_intf.h +++ b/include/hal_intf.h @@ -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 };