/** @file */
|
/******************************************************************************
|
*
|
* Copyright(c) 2019 Realtek Corporation. All rights reserved.
|
*
|
* This program is free software; you can redistribute it and/or modify it
|
* under the terms of version 2 of the GNU General Public License as
|
* published by the Free Software Foundation.
|
*
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
* more details.
|
*
|
******************************************************************************/
|
|
#ifndef _MAC_AX_FTM_H_
|
#define _MAC_AX_FTM_H_
|
|
#include "../mac_def.h"
|
#include "role.h"
|
#include "fwcmd.h"
|
#include "addr_cam.h"
|
|
/*--------------------Define ----------------------------------------*/
|
#define FWCMD_H2C_FUNC_SECCAM_FTM 0x2
|
|
/*--------------------DSecurity cam type declaration-----------------*/
|
struct fwcmd_ftm_info {
|
u32 dword0;
|
};
|
|
/*--------------------Funciton declaration----------------------------*/
|
|
/**
|
* @brief mac_sta_add_key
|
*
|
* @param *adapter
|
* @param *sec_cam_content
|
* @param mac_id
|
* @param key_id
|
* @param key_type
|
* @return Please Place Description here.
|
* @retval u32
|
*/
|
|
u32 mac_ista_ftm_proc(struct mac_ax_adapter *adapter,
|
struct mac_ax_ftm_para *ftmr);
|
/**
|
* @}
|
* @}
|
*/
|
|
/**
|
* @addtogroup Basic_TRX
|
* @{
|
* @addtogroup Security
|
* @{
|
*/
|
|
/**
|
* @brief mac_sta_del_key
|
*
|
* @param *adapter
|
* @param mac_id
|
* @param key_id
|
* @param key_type
|
* @return Please Place Description here.
|
* @retval u32
|
*/
|
|
#endif
|