diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2008-10-30 16:14:36 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:51:48 -0800 |
commit | 42c84bb4603d5a375b1c8dbbbef686d24e804807 (patch) | |
tree | e8ab2136a2e5a8f934108531edee0c088b02b8ac /drivers/staging/winbond/mds.c | |
parent | cc18071068f518c3c01616d7900de3b77252ccdf (diff) |
Staging: w35und: remove ->adapter from struct _HW_DATA_T
Eventually we want to pass a pointer to struct ieee80211_hw around in the
driver, so remove the bidirectional link between struct wb35_adapter and struct
_HW_DATA_T to simplify the code.
Acked-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/winbond/mds.c')
-rw-r--r-- | drivers/staging/winbond/mds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/winbond/mds.c b/drivers/staging/winbond/mds.c index e680157c6ada..35ea100a665c 100644 --- a/drivers/staging/winbond/mds.c +++ b/drivers/staging/winbond/mds.c @@ -176,7 +176,7 @@ Mds_Tx(struct wb35_adapter * adapter) // Start to send by lower module // if (!pHwData->IsKeyPreSet) - Wb35Tx_start(pHwData); + Wb35Tx_start(adapter); cleanup: atomic_dec(&pMds->TxThreadCount); |