diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-04-21 13:02:17 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-07 15:02:21 -0400 |
commit | 9a46d44eda55ad87a727fe351b0ab27c23d4555c (patch) | |
tree | 8c0cc415afbf17288e65cffa4153d7b5ed77e936 /drivers/net/wireless/rt2x00/rt2x00.h | |
parent | bd394a74a0e81efb15feaa8d7d10a0eaa8f4bf07 (diff) |
rt2x00: Fix kernel-doc
Add missing kernel-doc variables for structures/functions.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index d85553f6351e..92656d09cff9 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -404,7 +404,7 @@ static inline struct rt2x00_intf* vif_to_intf(struct ieee80211_vif *vif) | |||
404 | * @supported_rates: Rate types which are supported (CCK, OFDM). | 404 | * @supported_rates: Rate types which are supported (CCK, OFDM). |
405 | * @num_channels: Number of supported channels. This is used as array size | 405 | * @num_channels: Number of supported channels. This is used as array size |
406 | * for @tx_power_a, @tx_power_bg and @channels. | 406 | * for @tx_power_a, @tx_power_bg and @channels. |
407 | * channels: Device/chipset specific channel values (See &struct rf_channel). | 407 | * @channels: Device/chipset specific channel values (See &struct rf_channel). |
408 | * @tx_power_a: TX power values for all 5.2GHz channels (may be NULL). | 408 | * @tx_power_a: TX power values for all 5.2GHz channels (may be NULL). |
409 | * @tx_power_bg: TX power values for all 2.4GHz channels (may be NULL). | 409 | * @tx_power_bg: TX power values for all 2.4GHz channels (may be NULL). |
410 | * @tx_power_default: Default TX power value to use when either | 410 | * @tx_power_default: Default TX power value to use when either |
@@ -936,7 +936,7 @@ struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev, | |||
936 | 936 | ||
937 | /** | 937 | /** |
938 | * rt2x00queue_get_entry - Get queue entry where the given index points to. | 938 | * rt2x00queue_get_entry - Get queue entry where the given index points to. |
939 | * @rt2x00dev: Pointer to &struct rt2x00_dev. | 939 | * @queue: Pointer to &struct data_queue from where we obtain the entry. |
940 | * @index: Index identifier for obtaining the correct index. | 940 | * @index: Index identifier for obtaining the correct index. |
941 | */ | 941 | */ |
942 | struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue, | 942 | struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue, |
@@ -945,7 +945,7 @@ struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue, | |||
945 | /** | 945 | /** |
946 | * rt2x00queue_index_inc - Index incrementation function | 946 | * rt2x00queue_index_inc - Index incrementation function |
947 | * @queue: Queue (&struct data_queue) to perform the action on. | 947 | * @queue: Queue (&struct data_queue) to perform the action on. |
948 | * @action: Index type (&enum queue_index) to perform the action on. | 948 | * @index: Index type (&enum queue_index) to perform the action on. |
949 | * | 949 | * |
950 | * This function will increase the requested index on the queue, | 950 | * This function will increase the requested index on the queue, |
951 | * it will grab the appropriate locks and handle queue overflow events by | 951 | * it will grab the appropriate locks and handle queue overflow events by |