staging: rtl8192e: Convert typedef tx_ring to struct tx_ring
authorLarry Finger <Larry.Finger@lwfinger.net>
Tue, 19 Jul 2011 04:29:22 +0000 (23:29 -0500)
committerLarry Finger <Larry.Finger@lwfinger.net>
Wed, 24 Aug 2011 06:39:09 +0000 (01:39 -0500)
Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
drivers/staging/rtl8192e/rtl_core.h

index 394f3a7..d2056ed 100644 (file)
@@ -511,11 +511,11 @@ typedef struct _init_gain
 
 } init_gain, *pinit_gain;
 
-typedef struct _tx_ring{
+struct tx_ring {
        u32 * desc;
        u8 nStuckCount;
-       struct _tx_ring * next;
-}__attribute__ ((packed)) tx_ring, * ptx_ring;
+       struct tx_ring * next;
+} __packed;
 
 struct rtl8192_tx_ring {
     struct tx_desc *desc;