From: Larry Finger Date: Wed, 20 Jul 2011 00:27:05 +0000 (-0500) Subject: staging: rtl8192e: Convert typedef QOS_ELE_SUBTYPE to enum qos_ele_subtype X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f58a1cd97e727317ff316f7783592019606b4bc7;p=deliverable%2Flinux.git staging: rtl8192e: Convert typedef QOS_ELE_SUBTYPE to enum qos_ele_subtype Remove typedef from enum. Rename enum. Rename uses. Signed-off-by: Larry Finger --- diff --git a/drivers/staging/rtl8192e/rtl819x_Qos.h b/drivers/staging/rtl8192e/rtl819x_Qos.h index 547baeab30e1..b4290c41c6e8 100644 --- a/drivers/staging/rtl8192e/rtl819x_Qos.h +++ b/drivers/staging/rtl8192e/rtl819x_Qos.h @@ -165,13 +165,13 @@ enum ack_policy { #define GET_WMM_QOS_INFO_FIELD_STA_MAX_SP_LEN(_pStart) LE_BITS_TO_1BYTE(_pStart, 5, 2) #define SET_WMM_QOS_INFO_FIELD_STA_MAX_SP_LEN(_pStart, _val) SET_BITS_TO_LE_1BYTE(_pStart, 5, 2, _val) -typedef enum _QOSIE_SOURCE{ +enum qos_ie_source { QOSIE_SRC_ADDTSREQ, QOSIE_SRC_ADDTSRSP, QOSIE_SRC_REASOCREQ, QOSIE_SRC_REASOCRSP, QOSIE_SRC_DELTS, -} QOSIE_SOURCE; +}; typedef u32 AC_CODING; @@ -209,10 +209,10 @@ typedef u32 AC_CODING; #define WMM_PARAM_ELEMENT_SIZE (8+(4*AC_PARAM_SIZE)) -typedef enum _QOS_ELE_SUBTYPE{ +enum qos_ele_subtype { QOSELE_TYPE_INFO = 0x00, QOSELE_TYPE_PARAM = 0x01, -} QOS_ELE_SUBTYPE,*PQOS_ELE_SUBTYPE; +}; typedef enum _DIRECTION_VALUE{ @@ -359,7 +359,7 @@ struct bss_qos { u8 bdWMMIEBuf[MAX_WMMELE_LENGTH]; struct octet_string bdWMMIE; - QOS_ELE_SUBTYPE EleSubType; + enum qos_ele_subtype EleSubType; u8* pWMMInfoEle; u8* pWMMParamEle;