diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-08-29 15:07:16 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-29 16:24:12 -0400 |
commit | 6c6aa3c004e702532cb0f549a96eb2f75636bd3b (patch) | |
tree | 8943035bef5cccb6496e5b1023e93ce76f469068 /drivers/net/wireless/rt2x00/rt61pci.c | |
parent | 2af0a570b45ec315f364ea2c8a6d072cfcaa9d32 (diff) |
rt2x00: Add Signal type flag
Instead of using the PLCP flag to indicate if the
signal value is plcp or the bitrate we should add
a new flag to mark the bitrate type explicitely.
This is usefull when new types are added later for
rt2800.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt61pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt61pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index 52537101c908..d740f560ccd0 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
@@ -1991,6 +1991,8 @@ static void rt61pci_fill_rxdone(struct queue_entry *entry, | |||
1991 | 1991 | ||
1992 | if (rt2x00_get_field32(word0, RXD_W0_OFDM)) | 1992 | if (rt2x00_get_field32(word0, RXD_W0_OFDM)) |
1993 | rxdesc->dev_flags |= RXDONE_SIGNAL_PLCP; | 1993 | rxdesc->dev_flags |= RXDONE_SIGNAL_PLCP; |
1994 | else | ||
1995 | rxdesc->dev_flags |= RXDONE_SIGNAL_BITRATE; | ||
1994 | if (rt2x00_get_field32(word0, RXD_W0_MY_BSS)) | 1996 | if (rt2x00_get_field32(word0, RXD_W0_MY_BSS)) |
1995 | rxdesc->dev_flags |= RXDONE_MY_BSS; | 1997 | rxdesc->dev_flags |= RXDONE_MY_BSS; |
1996 | } | 1998 | } |