Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe107a52 authored by Ivo van Doorn's avatar Ivo van Doorn Committed by John W. Linville
Browse files

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: default avatarGertjan van Wingerde <gwingerde@gmail.com>
Signed-off-by: default avatarHelmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 26a1d07f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -315,17 +315,17 @@ struct txentry_desc {

		struct {
			u16 mcs;
			u16 stbc;
			u16 ba_size;
			u16 mpdu_density;
			short txop;
			u8 stbc;
			u8 ba_size;
			u8 mpdu_density;
			enum txop txop;
		} ht;
	} u;

	u16 rate_mode;

	short retry_limit;
	short ifs;
	enum ifs ifs;

	enum cipher cipher;
	u16 key_idx;