rt2x00: Optimize TX descriptor memory layout
Some fields only need to be u8 and for ifs and txop we can use the already available enums. Acked-by: Gertjan van Wingerde <gwingerde@gmail.com> Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
26a1d07f41
commit
fe107a5234
@@ -315,17 +315,17 @@ struct txentry_desc {
|
|||||||
|
|
||||||
struct {
|
struct {
|
||||||
u16 mcs;
|
u16 mcs;
|
||||||
u16 stbc;
|
u8 stbc;
|
||||||
u16 ba_size;
|
u8 ba_size;
|
||||||
u16 mpdu_density;
|
u8 mpdu_density;
|
||||||
short txop;
|
enum txop txop;
|
||||||
} ht;
|
} ht;
|
||||||
} u;
|
} u;
|
||||||
|
|
||||||
u16 rate_mode;
|
u16 rate_mode;
|
||||||
|
|
||||||
short retry_limit;
|
short retry_limit;
|
||||||
short ifs;
|
enum ifs ifs;
|
||||||
|
|
||||||
enum cipher cipher;
|
enum cipher cipher;
|
||||||
u16 key_idx;
|
u16 key_idx;
|
||||||
|
Reference in New Issue
Block a user