diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2800pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800pci.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c index adc3534254df..4241f1943842 100644 --- a/drivers/net/wireless/rt2x00/rt2800pci.c +++ b/drivers/net/wireless/rt2x00/rt2800pci.c | |||
@@ -966,28 +966,28 @@ static int rt2800pci_probe_hw(struct rt2x00_dev *rt2x00dev) | |||
966 | * This device has multiple filters for control frames | 966 | * This device has multiple filters for control frames |
967 | * and has a separate filter for PS Poll frames. | 967 | * and has a separate filter for PS Poll frames. |
968 | */ | 968 | */ |
969 | __set_bit(DRIVER_SUPPORT_CONTROL_FILTERS, &rt2x00dev->flags); | 969 | __set_bit(CAPABILITY_CONTROL_FILTERS, &rt2x00dev->cap_flags); |
970 | __set_bit(DRIVER_SUPPORT_CONTROL_FILTER_PSPOLL, &rt2x00dev->flags); | 970 | __set_bit(CAPABILITY_CONTROL_FILTER_PSPOLL, &rt2x00dev->cap_flags); |
971 | 971 | ||
972 | /* | 972 | /* |
973 | * This device has a pre tbtt interrupt and thus fetches | 973 | * This device has a pre tbtt interrupt and thus fetches |
974 | * a new beacon directly prior to transmission. | 974 | * a new beacon directly prior to transmission. |
975 | */ | 975 | */ |
976 | __set_bit(DRIVER_SUPPORT_PRE_TBTT_INTERRUPT, &rt2x00dev->flags); | 976 | __set_bit(CAPABILITY_PRE_TBTT_INTERRUPT, &rt2x00dev->cap_flags); |
977 | 977 | ||
978 | /* | 978 | /* |
979 | * This device requires firmware. | 979 | * This device requires firmware. |
980 | */ | 980 | */ |
981 | if (!rt2x00_is_soc(rt2x00dev)) | 981 | if (!rt2x00_is_soc(rt2x00dev)) |
982 | __set_bit(DRIVER_REQUIRE_FIRMWARE, &rt2x00dev->flags); | 982 | __set_bit(REQUIRE_FIRMWARE, &rt2x00dev->cap_flags); |
983 | __set_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags); | 983 | __set_bit(REQUIRE_DMA, &rt2x00dev->cap_flags); |
984 | __set_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags); | 984 | __set_bit(REQUIRE_L2PAD, &rt2x00dev->cap_flags); |
985 | __set_bit(DRIVER_REQUIRE_TXSTATUS_FIFO, &rt2x00dev->flags); | 985 | __set_bit(REQUIRE_TXSTATUS_FIFO, &rt2x00dev->cap_flags); |
986 | __set_bit(DRIVER_REQUIRE_TASKLET_CONTEXT, &rt2x00dev->flags); | 986 | __set_bit(REQUIRE_TASKLET_CONTEXT, &rt2x00dev->cap_flags); |
987 | if (!modparam_nohwcrypt) | 987 | if (!modparam_nohwcrypt) |
988 | __set_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags); | 988 | __set_bit(CAPABILITY_HW_CRYPTO, &rt2x00dev->cap_flags); |
989 | __set_bit(DRIVER_SUPPORT_LINK_TUNING, &rt2x00dev->flags); | 989 | __set_bit(CAPABILITY_LINK_TUNING, &rt2x00dev->cap_flags); |
990 | __set_bit(DRIVER_REQUIRE_HT_TX_DESC, &rt2x00dev->flags); | 990 | __set_bit(REQUIRE_HT_TX_DESC, &rt2x00dev->cap_flags); |
991 | 991 | ||
992 | /* | 992 | /* |
993 | * Set the rssi offset. | 993 | * Set the rssi offset. |