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/rt2800usb.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/rt2800usb.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800usb.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800usb.c b/drivers/net/wireless/rt2x00/rt2800usb.c index 9ab15c480701..208316af6d99 100644 --- a/drivers/net/wireless/rt2x00/rt2800usb.c +++ b/drivers/net/wireless/rt2x00/rt2800usb.c | |||
@@ -790,19 +790,19 @@ static const struct data_queue_desc rt2800usb_queue_bcn = { | |||
790 | }; | 790 | }; |
791 | 791 | ||
792 | static const struct rt2x00_ops rt2800usb_ops = { | 792 | static const struct rt2x00_ops rt2800usb_ops = { |
793 | .name = KBUILD_MODNAME, | 793 | .name = KBUILD_MODNAME, |
794 | .max_sta_intf = 1, | 794 | .max_sta_intf = 1, |
795 | .max_ap_intf = 8, | 795 | .max_ap_intf = 8, |
796 | .eeprom_size = EEPROM_SIZE, | 796 | .eeprom_size = EEPROM_SIZE, |
797 | .rf_size = RF_SIZE, | 797 | .rf_size = RF_SIZE, |
798 | .tx_queues = NUM_TX_QUEUES, | 798 | .tx_queues = NUM_TX_QUEUES, |
799 | .rx = &rt2800usb_queue_rx, | 799 | .rx = &rt2800usb_queue_rx, |
800 | .tx = &rt2800usb_queue_tx, | 800 | .tx = &rt2800usb_queue_tx, |
801 | .bcn = &rt2800usb_queue_bcn, | 801 | .bcn = &rt2800usb_queue_bcn, |
802 | .lib = &rt2800usb_rt2x00_ops, | 802 | .lib = &rt2800usb_rt2x00_ops, |
803 | .hw = &rt2800_mac80211_ops, | 803 | .hw = &rt2800_mac80211_ops, |
804 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS | 804 | #ifdef CONFIG_RT2X00_LIB_DEBUGFS |
805 | .debugfs = &rt2800_rt2x00debug, | 805 | .debugfs = &rt2800_rt2x00debug, |
806 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ | 806 | #endif /* CONFIG_RT2X00_LIB_DEBUGFS */ |
807 | }; | 807 | }; |
808 | 808 | ||