aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2800pci.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/rt2800pci.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/rt2800pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2800pci.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c
index 87a5094ae953..029a45f0cb99 100644
--- a/drivers/net/wireless/rt2x00/rt2800pci.c
+++ b/drivers/net/wireless/rt2x00/rt2800pci.c
@@ -1201,19 +1201,19 @@ static const struct data_queue_desc rt2800pci_queue_bcn = {
1201}; 1201};
1202 1202
1203static const struct rt2x00_ops rt2800pci_ops = { 1203static const struct rt2x00_ops rt2800pci_ops = {
1204 .name = KBUILD_MODNAME, 1204 .name = KBUILD_MODNAME,
1205 .max_sta_intf = 1, 1205 .max_sta_intf = 1,
1206 .max_ap_intf = 8, 1206 .max_ap_intf = 8,
1207 .eeprom_size = EEPROM_SIZE, 1207 .eeprom_size = EEPROM_SIZE,
1208 .rf_size = RF_SIZE, 1208 .rf_size = RF_SIZE,
1209 .tx_queues = NUM_TX_QUEUES, 1209 .tx_queues = NUM_TX_QUEUES,
1210 .rx = &rt2800pci_queue_rx, 1210 .rx = &rt2800pci_queue_rx,
1211 .tx = &rt2800pci_queue_tx, 1211 .tx = &rt2800pci_queue_tx,
1212 .bcn = &rt2800pci_queue_bcn, 1212 .bcn = &rt2800pci_queue_bcn,
1213 .lib = &rt2800pci_rt2x00_ops, 1213 .lib = &rt2800pci_rt2x00_ops,
1214 .hw = &rt2800_mac80211_ops, 1214 .hw = &rt2800_mac80211_ops,
1215#ifdef CONFIG_RT2X00_LIB_DEBUGFS 1215#ifdef CONFIG_RT2X00_LIB_DEBUGFS
1216 .debugfs = &rt2800_rt2x00debug, 1216 .debugfs = &rt2800_rt2x00debug,
1217#endif /* CONFIG_RT2X00_LIB_DEBUGFS */ 1217#endif /* CONFIG_RT2X00_LIB_DEBUGFS */
1218}; 1218};
1219 1219