qcacmn: Add cfg80211 scan start and stop command

Add cfg80211 scan start and scan stop commands.

Change-Id: I20b6c7743496ae82cc3a93befb5b68812047ec1a
CRs-Fixed: 1095299
このコミットが含まれているのは:
Sandeep Puligilla
2017-02-25 16:35:35 -08:00
committed by Abhishek Singh
コミット 7acd31fa33
8個のファイルの変更806行の追加23行の削除

ファイルの表示

@@ -23,4 +23,22 @@
#ifndef _WLAN_UTILITY_H_
#define _WLAN_UTILITY_H_
#include <qdf_types.h>
/**
* wlan_chan_to_freq() - converts channel to frequency
* @chan: channel number
*
* @return frequency of the channel
*/
uint32_t wlan_chan_to_freq(uint8_t chan);
/*
* wlan_is_dsrc_channel() - is the channel DSRC
* @center_freq: center freq of the channel
*
* Return: true if DSRC channel or false otherwise
*/
bool wlan_is_dsrc_channel(uint16_t center_freq);
#endif /* _WLAN_UTILITY_H_ */