From: Larry Finger Date: Tue, 19 Jul 2011 04:44:27 +0000 (-0500) Subject: staging: rtl8192e: Convert typedef tx_pending_t to struct tx_pending X-Git-Tag: v3.2-rc1~169^2^2~864^2~14^2~132 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0ce600451d9d5543cba5b4c0478ecd02ffd3e399;p=profile%2Fivi%2Fkernel-x86-ivi.git staging: rtl8192e: Convert typedef tx_pending_t to struct tx_pending Remove typedef from struct. Rename struct. Rename uses. Signed-off-by: Larry Finger --- diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h index 69cf468..1f405cd 100644 --- a/drivers/staging/rtl8192e/rtllib.h +++ b/drivers/staging/rtl8192e/rtllib.h @@ -1774,10 +1774,10 @@ enum rtllib_state { #ifndef eqMacAddr #define eqMacAddr(a,b) ( ((a)[0]==(b)[0] && (a)[1]==(b)[1] && (a)[2]==(b)[2] && (a)[3]==(b)[3] && (a)[4]==(b)[4] && (a)[5]==(b)[5]) ? 1:0 ) #endif -typedef struct tx_pending_t{ +struct tx_pending { int frag; struct rtllib_txb *txb; -}tx_pending_t; +};//; typedef struct _bandwidth_autoswitch { @@ -2392,7 +2392,7 @@ struct rtllib_device { u8 amsdu_in_process; /* used if IEEE_SOFTMAC_TX_QUEUE is set */ - struct tx_pending_t tx_pending; + struct tx_pending tx_pending; /* used if IEEE_SOFTMAC_ASSOCIATE is set */ struct timer_list associate_timer;