Commit 80bf8836 authored by Tony Cho's avatar Tony Cho Committed by Greg Kroah-Hartman

staging: wilc1000: remove struct del_beacon

This patch removes struct del_beacon which is not necessary. This patch
also changes Handle_DelBeacon function by removing 2nd parameter, struct
del_beacon because it is not used inside.
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ffd6dbc8
...@@ -269,22 +269,6 @@ struct set_beacon { ...@@ -269,22 +269,6 @@ struct set_beacon {
* after the TIM inormation element */ * after the TIM inormation element */
}; };
/*!
* @struct del_beacon
* @brief Del Beacon message body
* @details
* @todo
* @sa
* @author Adham Abozaeid
* @date 15 July 2012
* @version 1.0
*/
struct del_beacon {
u8 u8dummy;
};
/*! /*!
* @struct set_multicast * @struct set_multicast
* @brief set Multicast filter Address * @brief set Multicast filter Address
...@@ -408,7 +392,6 @@ union message_body { ...@@ -408,7 +392,6 @@ union message_body {
struct cfg_param_attr cfg_info; struct cfg_param_attr cfg_info;
struct channel_attr channel_info; struct channel_attr channel_info;
struct set_beacon strHostIFSetBeacon; struct set_beacon strHostIFSetBeacon;
struct del_beacon strHostIFDelBeacon;
struct add_sta_param strAddStaParam; struct add_sta_param strAddStaParam;
struct del_sta strDelStaParam; struct del_sta strDelStaParam;
struct add_sta_param strEditStaParam; struct add_sta_param strEditStaParam;
...@@ -3244,14 +3227,13 @@ static void Handle_AddBeacon(tstrWILC_WFIDrv *drvHandler, ...@@ -3244,14 +3227,13 @@ static void Handle_AddBeacon(tstrWILC_WFIDrv *drvHandler,
/** /**
* @brief Handle_AddBeacon * @brief Handle_AddBeacon
* @details Sending config packet to delete beacon * @details Sending config packet to delete beacon
* @param[in] struct del_beacon *pstrDelBeacon * @param[in] tstrWILC_WFIDrv *drvHandler
* @return NONE * @return NONE
* @author * @author
* @date * @date
* @version 1.0 * @version 1.0
*/ */
static void Handle_DelBeacon(tstrWILC_WFIDrv *drvHandler, static void Handle_DelBeacon(tstrWILC_WFIDrv *drvHandler)
struct del_beacon *pstrDelBeacon)
{ {
s32 s32Error = 0; s32 s32Error = 0;
tstrWID strWID; tstrWID strWID;
...@@ -4156,7 +4138,7 @@ static int hostIFthread(void *pvArg) ...@@ -4156,7 +4138,7 @@ static int hostIFthread(void *pvArg)
break; break;
case HOST_IF_MSG_DEL_BEACON: case HOST_IF_MSG_DEL_BEACON:
Handle_DelBeacon(msg.drvHandler, &msg.body.strHostIFDelBeacon); Handle_DelBeacon(msg.drvHandler);
break; break;
case HOST_IF_MSG_ADD_STATION: case HOST_IF_MSG_ADD_STATION:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment