aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2500pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2500pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2500pci.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c
index 9a31e5e7b8df..30960fd8a449 100644
--- a/drivers/net/wireless/rt2x00/rt2500pci.c
+++ b/drivers/net/wireless/rt2x00/rt2500pci.c
@@ -1922,20 +1922,20 @@ static const struct data_queue_desc rt2500pci_queue_atim = {
1922}; 1922};
1923 1923
1924static const struct rt2x00_ops rt2500pci_ops = { 1924static const struct rt2x00_ops rt2500pci_ops = {
1925 .name = KBUILD_MODNAME, 1925 .name = KBUILD_MODNAME,
1926 .max_sta_intf = 1, 1926 .max_sta_intf = 1,
1927 .max_ap_intf = 1, 1927 .max_ap_intf = 1,
1928 .eeprom_size = EEPROM_SIZE, 1928 .eeprom_size = EEPROM_SIZE,
1929 .rf_size = RF_SIZE, 1929 .rf_size = RF_SIZE,
1930 .tx_queues = NUM_TX_QUEUES, 1930 .tx_queues = NUM_TX_QUEUES,
1931 .rx = &rt2500pci_queue_rx, 1931 .rx = &rt2500pci_queue_rx,
1932 .tx = &rt2500pci_queue_tx, 1932 .tx = &rt2500pci_queue_tx,
1933 .bcn = &rt2500pci_queue_bcn, 1933 .bcn = &rt2500pci_queue_bcn,
1934 .atim = &rt2500pci_queue_atim, 1934 .atim = &rt2500pci_queue_atim,
1935 .lib = &rt2500pci_rt2x00_ops, 1935 .lib = &rt2500pci_rt2x00_ops,
1936 .hw = &rt2500pci_mac80211_ops, 1936 .hw = &rt2500pci_mac80211_ops,
1937#ifdef CONFIG_RT2X00_LIB_DEBUGFS 1937#ifdef CONFIG_RT2X00_LIB_DEBUGFS
1938 .debugfs = &rt2500pci_rt2x00debug, 1938 .debugfs = &rt2500pci_rt2x00debug,
1939#endif /* CONFIG_RT2X00_LIB_DEBUGFS */ 1939#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
1940}; 1940};
1941 1941