diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00queue.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00queue.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.h b/drivers/net/wireless/rt2x00/rt2x00queue.h index 4d00ced14cc7..303d5568470d 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.h +++ b/drivers/net/wireless/rt2x00/rt2x00queue.h | |||
@@ -260,11 +260,14 @@ struct txentry_desc { | |||
260 | * @ENTRY_OWNER_DEVICE_CRYPTO: This entry is owned by the device for data | 260 | * @ENTRY_OWNER_DEVICE_CRYPTO: This entry is owned by the device for data |
261 | * encryption or decryption. The entry should only be touched after | 261 | * encryption or decryption. The entry should only be touched after |
262 | * the device has signaled it is done with it. | 262 | * the device has signaled it is done with it. |
263 | * @ENTRY_DATA_PENDING: This entry contains a valid frame and is waiting | ||
264 | * for the signal to start sending. | ||
263 | */ | 265 | */ |
264 | enum queue_entry_flags { | 266 | enum queue_entry_flags { |
265 | ENTRY_BCN_ASSIGNED, | 267 | ENTRY_BCN_ASSIGNED, |
266 | ENTRY_OWNER_DEVICE_DATA, | 268 | ENTRY_OWNER_DEVICE_DATA, |
267 | ENTRY_OWNER_DEVICE_CRYPTO, | 269 | ENTRY_OWNER_DEVICE_CRYPTO, |
270 | ENTRY_DATA_PENDING, | ||
268 | }; | 271 | }; |
269 | 272 | ||
270 | /** | 273 | /** |