diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-06-11 17:21:56 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-14 12:18:12 -0400 |
commit | 8b7b1e05b0454f232b8ae1e6ee134b7f0b38abfb (patch) | |
tree | e2b31bc4158a0e5ba20fe5ca81f7c9d4d51390d5 /drivers/net/wireless/rt2x00/rt2x00queue.c | |
parent | fd7c8a40b2a63863f749e4d17f0d94d2e5ab1331 (diff) |
mac80211: remove ieee80211_get_morefrag
Replaced by the new helper ieee80211_has_morefrags which is
more consistent with the intent of the function.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00queue.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.c b/drivers/net/wireless/rt2x00/rt2x00queue.c index 2f3dd1d91a12..7b52039b01a6 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.c +++ b/drivers/net/wireless/rt2x00/rt2x00queue.c | |||
@@ -130,7 +130,7 @@ void rt2x00queue_create_tx_descriptor(struct queue_entry *entry, | |||
130 | /* | 130 | /* |
131 | * Check if more fragments are pending | 131 | * Check if more fragments are pending |
132 | */ | 132 | */ |
133 | if (ieee80211_get_morefrag(hdr)) { | 133 | if (ieee80211_has_morefrags(hdr->frame_control)) { |
134 | __set_bit(ENTRY_TXD_BURST, &txdesc->flags); | 134 | __set_bit(ENTRY_TXD_BURST, &txdesc->flags); |
135 | __set_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags); | 135 | __set_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags); |
136 | } | 136 | } |