Updating RPI arm64 Makefile CFLAGS

After de2c75f9fd any build on some architectures appears to throw many errors as follows. This change keeps the redefine from happening. (Yes this affects other architectures, but I can only verify the fix on arm64.)
 ```/var/lib/dkms/rtl8812au/5.3.4/build/include/autoconf.h:34: warning: "CONFIG_IOCTL_CFG80211" redefined
   34 | #define CONFIG_IOCTL_CFG80211
      | 
<command-line>: note: this is the location of the previous definition
```
This commit is contained in:
satmandu 2019-05-10 22:48:40 -04:00 committed by GitHub
parent d40c4b1d1b
commit 4f07fb3575
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1459,7 +1459,7 @@ endif
ifeq ($(CONFIG_PLATFORM_ARM64_RPI), y)
EXTRA_CFLAGS += -DCONFIG_LITTLE_ENDIAN
EXTRA_CFLAGS += -DCONFIG_IOCTL_CFG80211 -DRTW_USE_CFG80211_STA_EVENT
EXTRA_CFLAGS += -DRTW_USE_CFG80211_STA_EVENT
ARCH ?= arm64
CROSS_COMPILE ?=
KVER ?= $(shell uname -r)