Commit 9a46d44e authored by Ivo van Doorn's avatar Ivo van Doorn Committed by John W. Linville

rt2x00: Fix kernel-doc

Add missing kernel-doc variables for structures/functions.
Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent bd394a74
...@@ -404,7 +404,7 @@ static inline struct rt2x00_intf* vif_to_intf(struct ieee80211_vif *vif) ...@@ -404,7 +404,7 @@ static inline struct rt2x00_intf* vif_to_intf(struct ieee80211_vif *vif)
* @supported_rates: Rate types which are supported (CCK, OFDM). * @supported_rates: Rate types which are supported (CCK, OFDM).
* @num_channels: Number of supported channels. This is used as array size * @num_channels: Number of supported channels. This is used as array size
* for @tx_power_a, @tx_power_bg and @channels. * for @tx_power_a, @tx_power_bg and @channels.
* channels: Device/chipset specific channel values (See &struct rf_channel). * @channels: Device/chipset specific channel values (See &struct rf_channel).
* @tx_power_a: TX power values for all 5.2GHz channels (may be NULL). * @tx_power_a: TX power values for all 5.2GHz channels (may be NULL).
* @tx_power_bg: TX power values for all 2.4GHz channels (may be NULL). * @tx_power_bg: TX power values for all 2.4GHz channels (may be NULL).
* @tx_power_default: Default TX power value to use when either * @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,7 +936,7 @@ struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev,
/** /**
* rt2x00queue_get_entry - Get queue entry where the given index points to. * rt2x00queue_get_entry - Get queue entry where the given index points to.
* @rt2x00dev: Pointer to &struct rt2x00_dev. * @queue: Pointer to &struct data_queue from where we obtain the entry.
* @index: Index identifier for obtaining the correct index. * @index: Index identifier for obtaining the correct index.
*/ */
struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue, 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,7 +945,7 @@ struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue,
/** /**
* rt2x00queue_index_inc - Index incrementation function * rt2x00queue_index_inc - Index incrementation function
* @queue: Queue (&struct data_queue) to perform the action on. * @queue: Queue (&struct data_queue) to perform the action on.
* @action: Index type (&enum queue_index) to perform the action on. * @index: Index type (&enum queue_index) to perform the action on.
* *
* This function will increase the requested index on the queue, * This function will increase the requested index on the queue,
* it will grab the appropriate locks and handle queue overflow events by * it will grab the appropriate locks and handle queue overflow events by
......
...@@ -98,8 +98,9 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev, ...@@ -98,8 +98,9 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev,
* struct queue_entry_priv_pci_rx: Per RX entry PCI specific information * struct queue_entry_priv_pci_rx: Per RX entry PCI specific information
* *
* @desc: Pointer to device descriptor. * @desc: Pointer to device descriptor.
* @desc_dma: DMA pointer to @desc.
* @data: Pointer to device's entry memory. * @data: Pointer to device's entry memory.
* @dma: DMA pointer to &data. * @data_dma: DMA pointer to &data.
*/ */
struct queue_entry_priv_pci_rx { struct queue_entry_priv_pci_rx {
__le32 *desc; __le32 *desc;
...@@ -113,8 +114,9 @@ struct queue_entry_priv_pci_rx { ...@@ -113,8 +114,9 @@ struct queue_entry_priv_pci_rx {
* struct queue_entry_priv_pci_tx: Per TX entry PCI specific information * struct queue_entry_priv_pci_tx: Per TX entry PCI specific information
* *
* @desc: Pointer to device descriptor * @desc: Pointer to device descriptor
* @desc_dma: DMA pointer to @desc.
* @data: Pointer to device's entry memory. * @data: Pointer to device's entry memory.
* @dma: DMA pointer to &data. * @data_dma: DMA pointer to &data.
* @control: mac80211 control structure used to transmit data. * @control: mac80211 control structure used to transmit data.
*/ */
struct queue_entry_priv_pci_tx { struct queue_entry_priv_pci_tx {
......
...@@ -199,12 +199,12 @@ static inline int rt2x00usb_vendor_request_sw(struct rt2x00_dev *rt2x00dev, ...@@ -199,12 +199,12 @@ static inline int rt2x00usb_vendor_request_sw(struct rt2x00_dev *rt2x00dev,
* kmalloc for correct handling inside the kernel USB layer. * kmalloc for correct handling inside the kernel USB layer.
*/ */
static inline int rt2x00usb_eeprom_read(struct rt2x00_dev *rt2x00dev, static inline int rt2x00usb_eeprom_read(struct rt2x00_dev *rt2x00dev,
__le16 *eeprom, const u16 lenght) __le16 *eeprom, const u16 length)
{ {
return rt2x00usb_vendor_request(rt2x00dev, USB_EEPROM_READ, return rt2x00usb_vendor_request(rt2x00dev, USB_EEPROM_READ,
USB_VENDOR_REQUEST_IN, 0, 0, USB_VENDOR_REQUEST_IN, 0, 0,
eeprom, lenght, eeprom, length,
REGISTER_TIMEOUT16(lenght)); REGISTER_TIMEOUT16(length));
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment