aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt61pci.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/rt61pci.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/rt61pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt61pci.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
index bf04605896c7..4cb9afeed9d7 100644
--- a/drivers/net/wireless/rt2x00/rt61pci.c
+++ b/drivers/net/wireless/rt2x00/rt61pci.c
@@ -2788,19 +2788,19 @@ static const struct data_queue_desc rt61pci_queue_bcn = {
2788}; 2788};
2789 2789
2790static const struct rt2x00_ops rt61pci_ops = { 2790static const struct rt2x00_ops rt61pci_ops = {
2791 .name = KBUILD_MODNAME, 2791 .name = KBUILD_MODNAME,
2792 .max_sta_intf = 1, 2792 .max_sta_intf = 1,
2793 .max_ap_intf = 4, 2793 .max_ap_intf = 4,
2794 .eeprom_size = EEPROM_SIZE, 2794 .eeprom_size = EEPROM_SIZE,
2795 .rf_size = RF_SIZE, 2795 .rf_size = RF_SIZE,
2796 .tx_queues = NUM_TX_QUEUES, 2796 .tx_queues = NUM_TX_QUEUES,
2797 .rx = &rt61pci_queue_rx, 2797 .rx = &rt61pci_queue_rx,
2798 .tx = &rt61pci_queue_tx, 2798 .tx = &rt61pci_queue_tx,
2799 .bcn = &rt61pci_queue_bcn, 2799 .bcn = &rt61pci_queue_bcn,
2800 .lib = &rt61pci_rt2x00_ops, 2800 .lib = &rt61pci_rt2x00_ops,
2801 .hw = &rt61pci_mac80211_ops, 2801 .hw = &rt61pci_mac80211_ops,
2802#ifdef CONFIG_RT2X00_LIB_DEBUGFS 2802#ifdef CONFIG_RT2X00_LIB_DEBUGFS
2803 .debugfs = &rt61pci_rt2x00debug, 2803 .debugfs = &rt61pci_rt2x00debug,
2804#endif /* CONFIG_RT2X00_LIB_DEBUGFS */ 2804#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
2805}; 2805};
2806 2806