fix rtl8812au driver build after the last code update (#1123)

pull/1124/head
cronyx 2023-11-08 09:10:51 +03:00 committed by GitHub
parent aec51eba02
commit 90a58568a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 7 deletions

View File

@ -1,21 +1,19 @@
--- a/Makefile 2022-09-01 20:50:34.085515706 +0300
+++ b/Makefile 2022-09-01 21:37:32.114576023 +0300
@@ -39,8 +39,8 @@
--- a/Makefile 2023-11-08 03:23:56.619884059 +0300
+++ b/Makefile 2023-11-08 03:51:10.864807292 +0300
@@ -39,7 +39,7 @@
########################## WIFI IC ############################
CONFIG_RTL8812A = y
-CONFIG_RTL8821A = y
-CONFIG_RTL8814A = y
+CONFIG_RTL8821A = n
+CONFIG_RTL8814A = n
CONFIG_RTL8814A = n
######################### Interface ###########################
CONFIG_USB_HCI = y
########################## Features ###########################
@@ -206,9 +206,9 @@
EXTRA_CFLAGS += -DDBG=0
endif
-ifeq ($(CONFIG_RTL8812A)_$(CONFIG_RTL8821A)_$(CONFIG_RTL8814A), y_y_y)
-ifeq ($(CONFIG_RTL8812A)_$(CONFIG_RTL8821A), y_y)
+ifeq ($(CONFIG_RTL8812A)_$(CONFIG_RTL8821A)_$(CONFIG_RTL8814A), y_n_n)
-EXTRA_CFLAGS += -DDRV_NAME=\"rtl88xxau_wfb\"