summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2016-10-05 16:00:55 -0700
committerqcabuildsw <qcabuildsw@localhost>2016-10-17 21:57:38 -0700
commitf731b30df83ddd7befaf811fda55e66a3d4ea583 (patch)
tree471086bccde1f8f0772ffdbc4cd0c1744eec8a33
parenta1dc0136c7388278d8b2387e5863c81ce14cf971 (diff)
qcacld-3.0: Fix -Wmissing-prototypes in wlan_hdd_ioctl
We want to enable the compiler's -Wmissing-prototypes switch, but there is existing code that is generating warnings. Fix all warnings in wlan_hdd_ioctl. Change-Id: I24089ef930e15af0180eefbf98ab86372684b79f CRs-Fixed: 1074336
-rw-r--r--core/hdd/src/wlan_hdd_ioctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/hdd/src/wlan_hdd_ioctl.c b/core/hdd/src/wlan_hdd_ioctl.c
index 5fdab298fb8c..21a0117c1788 100644
--- a/core/hdd/src/wlan_hdd_ioctl.c
+++ b/core/hdd/src/wlan_hdd_ioctl.c
@@ -549,7 +549,7 @@ hdd_cfg80211_get_ibss_peer_info(hdd_adapter_t *adapter, uint8_t staIdx)
}
/* Function header is left blank intentionally */
-QDF_STATUS
+static QDF_STATUS
hdd_parse_get_ibss_peer_info(uint8_t *pValue, struct qdf_mac_addr *pPeerMacAddr)
{
uint8_t *inPtr = pValue;
@@ -1647,7 +1647,7 @@ hdd_parse_set_roam_scan_channels(hdd_adapter_t *adapter, const char *command)
*
* Return: 0 for success non-zero for failure
*/
-QDF_STATUS hdd_parse_plm_cmd(uint8_t *pValue, tSirPlmReq *pPlmRequest)
+static QDF_STATUS hdd_parse_plm_cmd(uint8_t *pValue, tSirPlmReq *pPlmRequest)
{
uint8_t *cmdPtr = NULL;
int count, content = 0, ret = 0;