aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00pci.h
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-04-21 13:02:17 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-05-07 15:02:21 -0400
commit9a46d44eda55ad87a727fe351b0ab27c23d4555c (patch)
tree8c0cc415afbf17288e65cffa4153d7b5ed77e936 /drivers/net/wireless/rt2x00/rt2x00pci.h
parentbd394a74a0e81efb15feaa8d7d10a0eaa8f4bf07 (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/rt2x00pci.h')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00pci.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.h b/drivers/net/wireless/rt2x00/rt2x00pci.h
index 9d1cdb99431c..2b0ef17bba6e 100644
--- a/drivers/net/wireless/rt2x00/rt2x00pci.h
+++ b/drivers/net/wireless/rt2x00/rt2x00pci.h
@@ -98,8 +98,9 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev,
98 * struct queue_entry_priv_pci_rx: Per RX entry PCI specific information 98 * struct queue_entry_priv_pci_rx: Per RX entry PCI specific information
99 * 99 *
100 * @desc: Pointer to device descriptor. 100 * @desc: Pointer to device descriptor.
101 * @desc_dma: DMA pointer to @desc.
101 * @data: Pointer to device's entry memory. 102 * @data: Pointer to device's entry memory.
102 * @dma: DMA pointer to &data. 103 * @data_dma: DMA pointer to &data.
103 */ 104 */
104struct queue_entry_priv_pci_rx { 105struct queue_entry_priv_pci_rx {
105 __le32 *desc; 106 __le32 *desc;
@@ -113,8 +114,9 @@ struct queue_entry_priv_pci_rx {
113 * struct queue_entry_priv_pci_tx: Per TX entry PCI specific information 114 * struct queue_entry_priv_pci_tx: Per TX entry PCI specific information
114 * 115 *
115 * @desc: Pointer to device descriptor 116 * @desc: Pointer to device descriptor
117 * @desc_dma: DMA pointer to @desc.
116 * @data: Pointer to device's entry memory. 118 * @data: Pointer to device's entry memory.
117 * @dma: DMA pointer to &data. 119 * @data_dma: DMA pointer to &data.
118 * @control: mac80211 control structure used to transmit data. 120 * @control: mac80211 control structure used to transmit data.
119 */ 121 */
120struct queue_entry_priv_pci_tx { 122struct queue_entry_priv_pci_tx {