diff options
author | Gertjan van Wingerde <gwingerde@gmail.com> | 2009-11-23 16:44:51 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-28 15:04:37 -0500 |
commit | 04d0362e2fa9d5f1ab560d0d59d04a535b4f3973 (patch) | |
tree | 976daa5bf750135f2161b7ce87613bddb5d0e65c /drivers/net/wireless/rt2x00/rt73usb.c | |
parent | 95d69aa046f75c750f18119810b6f58d397fb576 (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/rt73usb.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt73usb.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index 5bbcf6626f7d..d13a051b39af 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
@@ -2306,19 +2306,19 @@ static const struct data_queue_desc rt73usb_queue_bcn = { | |||
2306 | }; | 2306 | }; |
2307 | 2307 | ||
2308 | static const struct rt2x00_ops rt73usb_ops = { | 2308 | static const struct rt2x00_ops rt73usb_ops = { |
2309 | .name = KBUILD_MODNAME, | 2309 | .name = KBUILD_MODNAME, |
2310 | .max_sta_intf = 1, | 2310 | .max_sta_intf = 1, |
2311 | .max_ap_intf = 4, | 2311 | .max_ap_intf = 4, |
2312 | .eeprom_size = EEPROM_SIZE, | 2312 | .eeprom_size = EEPROM_SIZE, |
2313 | .rf_size = RF_SIZE, | 2313 | .rf_size = RF_SIZE, |
2314 | .tx_queues = NUM_TX_QUEUES, | 2314 | .tx_queues = NUM_TX_QUEUES, |
2315 | .rx = &rt73usb_queue_rx, | 2315 | .rx = &rt73usb_queue_rx, |
2316 | .tx = &rt73usb_queue_tx, | 2316 | .tx = &rt73usb_queue_tx, |
2317 | .bcn = &rt73usb_queue_bcn, | 2317 | .bcn = &rt73usb_queue_bcn, |
2318 | .lib = &rt73usb_rt2x00_ops, | 2318 | .lib = &rt73usb_rt2x00_ops, |
2319 | .hw = &rt73usb_mac80211_ops, | 2319 | .hw = &rt73usb_mac80211_ops, |
2320 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | 2320 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS |
2321 | .debugfs = &rt73usb_rt2x00debug, | 2321 | .debugfs = &rt73usb_rt2x00debug, |
2322 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ | 2322 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ |
2323 | }; | 2323 | }; |
2324 | 2324 | ||