Staging: w35und: Kill empty Mds_Destroy function
The Mds_Destroy() function doesn't do anything so kill it. Acked-by: Pavel Machek <pavel@ucw.cz> Signed-off-by: Pekka Enberg <penberg@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
9dd5f27144
commit
6112063d80
|
@ -18,11 +18,6 @@ Mds_initial(struct wbsoft_priv *adapter)
|
|||
return hal_get_tx_buffer(&adapter->sHwData, &pMds->pTxBuffer);
|
||||
}
|
||||
|
||||
void
|
||||
Mds_Destroy(struct wbsoft_priv *adapter)
|
||||
{
|
||||
}
|
||||
|
||||
static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor *pDes, u8 *buffer)
|
||||
{
|
||||
struct T00_descriptor *pT00;
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include "core.h"
|
||||
|
||||
unsigned char Mds_initial(struct wbsoft_priv *adapter);
|
||||
void Mds_Destroy(struct wbsoft_priv *adapter);
|
||||
void Mds_Tx(struct wbsoft_priv *adapter);
|
||||
void Mds_SendComplete(struct wbsoft_priv *adapter, struct T02_descriptor *pt02);
|
||||
void Mds_MpduProcess(struct wbsoft_priv *adapter, struct wb35_descriptor *prxdes);
|
||||
|
|
|
@ -863,8 +863,6 @@ static void hal_halt(struct hw_data *pHwData)
|
|||
|
||||
static void wb35_hw_halt(struct wbsoft_priv *adapter)
|
||||
{
|
||||
Mds_Destroy(adapter);
|
||||
|
||||
/* Turn off Rx and Tx hardware ability */
|
||||
hal_stop(&adapter->sHwData);
|
||||
#ifdef _PE_USB_INI_DUMP_
|
||||
|
|
Loading…
Reference in New Issue