Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef tx_ring to struct tx_ring
Browse files Browse the repository at this point in the history
Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 031189e commit b7a1404
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtl_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b7a1404

Please sign in to comment.