Staging: w35und: Convert typedef MTO_PARAMETERS to struct wb35_mto_param
authorPekka Enberg <penberg@cs.helsinki.fi>
Wed, 12 Aug 2009 08:03:38 +0000 (11:03 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 15 Sep 2009 19:02:17 +0000 (12:02 -0700)
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/winbond/core.h
drivers/staging/winbond/mto.h

index 42c9868..7d4bd5e 100644 (file)
@@ -18,7 +18,7 @@ struct wbsoft_priv {
 
        MLME_FRAME sMlmeFrame;  // connect to peerSTA parameters
 
-       MTO_PARAMETERS sMtoPara;        // MTO_struct ...
+       struct wb35_mto_params sMtoPara;        // MTO_struct ...
        struct hw_data sHwData; //For HAL
        struct wb35_mds Mds;
 
index 5990ba3..e6d2ccb 100644 (file)
@@ -50,8 +50,7 @@ typedef enum {
 //
 //   Defines the parameters used in the MAC Throughput Optimization algorithm
 //============================================================================
-typedef struct _MTO_PARAMETERS
-{
+struct wb35_mto_params {
        u8      Th_Fixant;
        u8      Th_Cnt;
        u8      Th_SQ3;
@@ -130,7 +129,7 @@ typedef struct _MTO_PARAMETERS
        s32             RSSI_high;
        s32             RSSI_low;
 
-} MTO_PARAMETERS, *PMTO_PARAMETERS;
+};
 
 
 #define MTO_DATA()                  (adapter->sMtoPara)