|
@@ -45,6 +45,7 @@
|
|
|
#include "cds_utils.h"
|
|
|
#include "wma.h"
|
|
|
#include "sme_api.h"
|
|
|
+#include "wlan_nlink_srv.h"
|
|
|
|
|
|
#ifdef CNSS_GENL
|
|
|
#include <net/cnss_nl.h>
|
|
@@ -166,27 +167,6 @@ int iw_get_oem_data_cap(struct net_device *dev,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * nl_srv_ucast_oem() - Wrapper function to send ucast msgs to OEM
|
|
|
- * @skb: sk buffer pointer
|
|
|
- * @dst_pid: Destination PID
|
|
|
- * @flag: flags
|
|
|
- *
|
|
|
- * Sends the ucast message to OEM with generic nl socket if CNSS_GENL
|
|
|
- * is enabled. Else, use the legacy netlink socket to send.
|
|
|
- *
|
|
|
- * Return: None
|
|
|
- */
|
|
|
-static void nl_srv_ucast_oem(struct sk_buff *skb, int dst_pid, int flag)
|
|
|
-{
|
|
|
-#ifdef CNSS_GENL
|
|
|
- nl_srv_ucast(skb, dst_pid, flag, WLAN_NL_MSG_OEM,
|
|
|
- CLD80211_MCGRP_OEM_MSGS);
|
|
|
-#else
|
|
|
- nl_srv_ucast(skb, dst_pid, flag);
|
|
|
-#endif
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
* send_oem_reg_rsp_nlink_msg() - send oem registration response
|
|
|
*
|