aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2400pci.c
diff options
context:
space:
mode:
authorGertjan van Wingerde <gwingerde@gmail.com>2009-11-23 16:44:51 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-11-28 15:04:37 -0500
commit04d0362e2fa9d5f1ab560d0d59d04a535b4f3973 (patch)
tree976daa5bf750135f2161b7ce87613bddb5d0e65c /drivers/net/wireless/rt2x00/rt2400pci.c
parent95d69aa046f75c750f18119810b6f58d397fb576 (diff)
rt2x00: Whitespace cleanup.
Clean up the use of whitespace in the initialization of the rt2x00_ops structures. This is preparatory for a later patch that adds members to that structure, which require different whitespace alignment. Signed-off-by: Gertjan van Wingerde <gwingerde@gmail.com> Acked-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2400pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2400pci.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2400pci.c b/drivers/net/wireless/rt2x00/rt2400pci.c
index 6e68bc7efd4e..7f900be39e5a 100644
--- a/drivers/net/wireless/rt2x00/rt2400pci.c
+++ b/drivers/net/wireless/rt2x00/rt2400pci.c
@@ -1623,20 +1623,20 @@ static const struct data_queue_desc rt2400pci_queue_atim = {
1623}; 1623};
1624 1624
1625static const struct rt2x00_ops rt2400pci_ops = { 1625static const struct rt2x00_ops rt2400pci_ops = {
1626 .name = KBUILD_MODNAME, 1626 .name = KBUILD_MODNAME,
1627 .max_sta_intf = 1, 1627 .max_sta_intf = 1,
1628 .max_ap_intf = 1, 1628 .max_ap_intf = 1,
1629 .eeprom_size = EEPROM_SIZE, 1629 .eeprom_size = EEPROM_SIZE,
1630 .rf_size = RF_SIZE, 1630 .rf_size = RF_SIZE,
1631 .tx_queues = NUM_TX_QUEUES, 1631 .tx_queues = NUM_TX_QUEUES,
1632 .rx = &rt2400pci_queue_rx, 1632 .rx = &rt2400pci_queue_rx,
1633 .tx = &rt2400pci_queue_tx, 1633 .tx = &rt2400pci_queue_tx,
1634 .bcn = &rt2400pci_queue_bcn, 1634 .bcn = &rt2400pci_queue_bcn,
1635 .atim = &rt2400pci_queue_atim, 1635 .atim = &rt2400pci_queue_atim,
1636 .lib = &rt2400pci_rt2x00_ops, 1636 .lib = &rt2400pci_rt2x00_ops,
1637 .hw = &rt2400pci_mac80211_ops, 1637 .hw = &rt2400pci_mac80211_ops,
1638#ifdef CONFIG_RT2X00_LIB_DEBUGFS 1638#ifdef CONFIG_RT2X00_LIB_DEBUGFS
1639 .debugfs = &rt2400pci_rt2x00debug, 1639 .debugfs = &rt2400pci_rt2x00debug,
1640#endif /* CONFIG_RT2X00_LIB_DEBUGFS */ 1640#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
1641}; 1641};
1642 1642