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/drivers/vx | |
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/drivers/vx')
-rw-r--r-- | sound/drivers/vx/vx_core.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sound/drivers/vx/vx_core.c b/sound/drivers/vx/vx_core.c index e8cc16993903..fc05a37fd017 100644 --- a/sound/drivers/vx/vx_core.c +++ b/sound/drivers/vx/vx_core.c | |||
@@ -416,6 +416,7 @@ int vx_send_rih(struct vx_core *chip, int cmd) | |||
416 | 416 | ||
417 | /** | 417 | /** |
418 | * snd_vx_boot_xilinx - boot up the xilinx interface | 418 | * snd_vx_boot_xilinx - boot up the xilinx interface |
419 | * @chip: VX core instance | ||
419 | * @boot: the boot record to load | 420 | * @boot: the boot record to load |
420 | */ | 421 | */ |
421 | int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *boot) | 422 | int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *boot) |
@@ -538,6 +539,8 @@ EXPORT_SYMBOL(snd_vx_threaded_irq_handler); | |||
538 | 539 | ||
539 | /** | 540 | /** |
540 | * snd_vx_irq_handler - interrupt handler | 541 | * snd_vx_irq_handler - interrupt handler |
542 | * @irq: irq number | ||
543 | * @dev: VX core instance | ||
541 | */ | 544 | */ |
542 | irqreturn_t snd_vx_irq_handler(int irq, void *dev) | 545 | irqreturn_t snd_vx_irq_handler(int irq, void *dev) |
543 | { | 546 | { |
@@ -649,6 +652,8 @@ static void vx_proc_init(struct vx_core *chip) | |||
649 | 652 | ||
650 | /** | 653 | /** |
651 | * snd_vx_dsp_boot - load the DSP boot | 654 | * snd_vx_dsp_boot - load the DSP boot |
655 | * @chip: VX core instance | ||
656 | * @boot: firmware data | ||
652 | */ | 657 | */ |
653 | int snd_vx_dsp_boot(struct vx_core *chip, const struct firmware *boot) | 658 | int snd_vx_dsp_boot(struct vx_core *chip, const struct firmware *boot) |
654 | { | 659 | { |
@@ -669,6 +674,8 @@ EXPORT_SYMBOL(snd_vx_dsp_boot); | |||
669 | 674 | ||
670 | /** | 675 | /** |
671 | * snd_vx_dsp_load - load the DSP image | 676 | * snd_vx_dsp_load - load the DSP image |
677 | * @chip: VX core instance | ||
678 | * @dsp: firmware data | ||
672 | */ | 679 | */ |
673 | int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp) | 680 | int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp) |
674 | { | 681 | { |
@@ -768,7 +775,10 @@ EXPORT_SYMBOL(snd_vx_resume); | |||
768 | 775 | ||
769 | /** | 776 | /** |
770 | * snd_vx_create - constructor for struct vx_core | 777 | * snd_vx_create - constructor for struct vx_core |
778 | * @card: card instance | ||
771 | * @hw: hardware specific record | 779 | * @hw: hardware specific record |
780 | * @ops: VX ops pointer | ||
781 | * @extra_size: extra byte size to allocate appending to chip | ||
772 | * | 782 | * |
773 | * this function allocates the instance and prepare for the hardware | 783 | * this function allocates the instance and prepare for the hardware |
774 | * initialization. | 784 | * initialization. |