diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-11-10 10:46:35 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-11-11 03:39:10 -0500 |
commit | 2a9e8df00951092e825144a9968285398f8aa162 (patch) | |
tree | 799f4bd2f80e963f879282c8829623c015529a85 /sound/pci | |
parent | 85a8181329a919d58b7ef99211251f47d5e1049e (diff) |
ALSA: vx: Fix missing kerneldoc parameter descriptions
The file isn't processed, but it's not bad to fix beforehand.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/vx222/vx222_ops.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/pci/vx222/vx222_ops.c b/sound/pci/vx222/vx222_ops.c index 2d1570273e99..52c1a8d5b88a 100644 --- a/sound/pci/vx222/vx222_ops.c +++ b/sound/pci/vx222/vx222_ops.c | |||
@@ -92,6 +92,7 @@ static inline unsigned long vx2_reg_addr(struct vx_core *_chip, int reg) | |||
92 | 92 | ||
93 | /** | 93 | /** |
94 | * snd_vx_inb - read a byte from the register | 94 | * snd_vx_inb - read a byte from the register |
95 | * @chip: VX core instance | ||
95 | * @offset: register enum | 96 | * @offset: register enum |
96 | */ | 97 | */ |
97 | static unsigned char vx2_inb(struct vx_core *chip, int offset) | 98 | static unsigned char vx2_inb(struct vx_core *chip, int offset) |
@@ -101,6 +102,7 @@ static unsigned char vx2_inb(struct vx_core *chip, int offset) | |||
101 | 102 | ||
102 | /** | 103 | /** |
103 | * snd_vx_outb - write a byte on the register | 104 | * snd_vx_outb - write a byte on the register |
105 | * @chip: VX core instance | ||
104 | * @offset: the register offset | 106 | * @offset: the register offset |
105 | * @val: the value to write | 107 | * @val: the value to write |
106 | */ | 108 | */ |
@@ -114,6 +116,7 @@ static void vx2_outb(struct vx_core *chip, int offset, unsigned char val) | |||
114 | 116 | ||
115 | /** | 117 | /** |
116 | * snd_vx_inl - read a 32bit word from the register | 118 | * snd_vx_inl - read a 32bit word from the register |
119 | * @chip: VX core instance | ||
117 | * @offset: register enum | 120 | * @offset: register enum |
118 | */ | 121 | */ |
119 | static unsigned int vx2_inl(struct vx_core *chip, int offset) | 122 | static unsigned int vx2_inl(struct vx_core *chip, int offset) |
@@ -123,6 +126,7 @@ static unsigned int vx2_inl(struct vx_core *chip, int offset) | |||
123 | 126 | ||
124 | /** | 127 | /** |
125 | * snd_vx_outl - write a 32bit word on the register | 128 | * snd_vx_outl - write a 32bit word on the register |
129 | * @chip: VX core instance | ||
126 | * @offset: the register enum | 130 | * @offset: the register enum |
127 | * @val: the value to write | 131 | * @val: the value to write |
128 | */ | 132 | */ |
@@ -223,6 +227,7 @@ static int vx2_test_xilinx(struct vx_core *_chip) | |||
223 | 227 | ||
224 | /** | 228 | /** |
225 | * vx_setup_pseudo_dma - set up the pseudo dma read/write mode. | 229 | * vx_setup_pseudo_dma - set up the pseudo dma read/write mode. |
230 | * @chip: VX core instance | ||
226 | * @do_write: 0 = read, 1 = set up for DMA write | 231 | * @do_write: 0 = read, 1 = set up for DMA write |
227 | */ | 232 | */ |
228 | static void vx2_setup_pseudo_dma(struct vx_core *chip, int do_write) | 233 | static void vx2_setup_pseudo_dma(struct vx_core *chip, int do_write) |