diff options
| -rw-r--r-- | Kbuild | 6 | ||||
| -rw-r--r-- | core/utils/nlink/src/wlan_nlink_srv.c | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -277,6 +277,11 @@ ifeq ($(CONFIG_ROME_IF),usb) CONFIG_PLD_USB_CNSS := y endif +#Enable SDIO specific APIS +ifeq ($(CONFIG_ROME_IF),sdio) + CONFIG_HIF_SDIO := 1 +endif + #Enable pci read/write config functions ifeq ($(CONFIG_ROME_IF),pci) CONFIG_ATH_PCI := 1 @@ -1647,4 +1652,3 @@ endif # Module information used by KBuild framework obj-$(CONFIG_QCA_CLD_WLAN) += $(MODNAME).o $(MODNAME)-y := $(OBJS) - diff --git a/core/utils/nlink/src/wlan_nlink_srv.c b/core/utils/nlink/src/wlan_nlink_srv.c index 349207f7602e..cef164515339 100644 --- a/core/utils/nlink/src/wlan_nlink_srv.c +++ b/core/utils/nlink/src/wlan_nlink_srv.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved. + * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -503,12 +503,12 @@ int nl_srv_is_initialized(void) #include <wlan_nlink_srv.h> -int nl_srv_init(void) +int nl_srv_init(void *wiphy) { return 0; } -void nl_srv_exit(int dst_pid) +void nl_srv_exit(void) { } |
