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>
This commit is contained in:
Ivo van Doorn
2008-04-21 19:02:17 +02:00
committed by John W. Linville
parent bd394a74a0
commit 9a46d44eda
3 changed files with 10 additions and 8 deletions

View File

@ -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
*
* @desc: Pointer to device descriptor.
* @desc_dma: DMA pointer to @desc.
* @data: Pointer to device's entry memory.
* @dma: DMA pointer to &data.
* @data_dma: DMA pointer to &data.
*/
struct queue_entry_priv_pci_rx {
__le32 *desc;
@ -113,8 +114,9 @@ struct queue_entry_priv_pci_rx {
* struct queue_entry_priv_pci_tx: Per TX entry PCI specific information
*
* @desc: Pointer to device descriptor
* @desc_dma: DMA pointer to @desc.
* @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.
*/
struct queue_entry_priv_pci_tx {