Ver código fonte

qcacld-3.0: Fix compile issue while WLAN_LOGGING_SOCK_SVC_ENABLE disabled

Fix compile issue while WLAN_LOGGING_SOCK_SVC_ENABLE disabled.

Change-Id: If83e0172f15aa856bf02d875e35aa54bcb0b6cc5
CRs-Fixed: 2536691
Hangtian Zhu 5 anos atrás
pai
commit
a053d2a304
1 arquivos alterados com 22 adições e 2 exclusões
  1. 22 2
      core/hdd/inc/wlan_hdd_main.h

+ 22 - 2
core/hdd/inc/wlan_hdd_main.h

@@ -2936,6 +2936,26 @@ static inline void hdd_set_tso_flags(struct hdd_context *hdd_ctx,
 }
 #endif /* FEATURE_TSO */
 
+/**
+ * wlan_hdd_get_host_log_nl_proto() - Get host log netlink protocol
+ * @hdd_ctx: HDD context
+ *
+ * This function returns with host log netlink protocol settings
+ *
+ * Return: none
+ */
+#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
+static inline int wlan_hdd_get_host_log_nl_proto(struct hdd_context *hdd_ctx)
+{
+	return hdd_ctx->config->host_log_custom_nl_proto;
+}
+#else
+static inline int wlan_hdd_get_host_log_nl_proto(struct hdd_context *hdd_ctx)
+{
+	return NETLINK_USERSOCK;
+}
+#endif
+
 #ifdef CONFIG_CNSS_LOGGER
 /**
  * wlan_hdd_nl_init() - wrapper function to CNSS_LOGGER case
@@ -2954,7 +2974,7 @@ static inline int wlan_hdd_nl_init(struct hdd_context *hdd_ctx)
 {
 	int proto;
 
-	proto = hdd_ctx->config->host_log_custom_nl_proto;
+	proto = wlan_hdd_get_host_log_nl_proto(hdd_ctx);
 	hdd_ctx->radio_index = nl_srv_init(hdd_ctx->wiphy, proto);
 
 	/* radio_index is assigned from 0, so only >=0 will be valid index  */
@@ -2977,7 +2997,7 @@ static inline int wlan_hdd_nl_init(struct hdd_context *hdd_ctx)
 {
 	int proto;
 
-	proto = hdd_ctx->config->host_log_custom_nl_proto;
+	proto = wlan_hdd_get_host_log_nl_proto(hdd_ctx);
 	return nl_srv_init(hdd_ctx->wiphy, proto);
 }
 #endif