-Avoid typedefs for structure types to maintain kernel coding style.
-Remove typedefs RT_LINK_DETECT_T and *PRT_LINK_DETECT_T of struct _RT_LINK_DETECT_T.
-Change Structure name _RT_LINK_DETECT_T to rt_link_detect to maintain Linux kernel Coding Style.
-Replace occurence of RT_LINK_DETECT_T to struct rt_link_detect.
Signed-off-by: Bhanusree Pola <bhanusreemahesh@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 } country_code_type_t;
 
 #define RT_MAX_LD_SLOT_NUM     10
-typedef struct _RT_LINK_DETECT_T {
+struct rt_link_detect {
 
        u32                             NumRecvBcnInPeriod;
        u32                             NumRecvDataInPeriod;
        u32                             NumTxOkInPeriod;
        u32                             NumRxOkInPeriod;
        bool                            bBusyTraffic;
-} RT_LINK_DETECT_T, *PRT_LINK_DETECT_T;
+};
 
 
 struct ieee80211_device {
        bool FwRWRF;
 
        //added by amy for AP roaming
-       RT_LINK_DETECT_T        LinkDetectInfo;
+       struct rt_link_detect LinkDetectInfo;
        //added by amy for ps
        struct rt_power_save_control PowerSaveControl;
 //}