Skip to content

Commit a2c9fc9

Browse files
committed
ASoC: SDCA: Fixup some kernel doc errors
JIRA: https://issues.redhat.com/browse/RHEL-101627 commit b4515fd Author: Charles Keepax <ckeepax@opensource.cirrus.com> Date: Tue Jun 24 13:28:40 2025 +0100 ASoC: SDCA: Fixup some kernel doc errors Correct some typos and omissions in the kernel doc for the ASoC SDCA code. Fixes: 2c8b3a8 ("ASoC: SDCA: Create DAPM widgets and routes from DisCo") Reported-by: Bard Liao <yung-chuan.liao@linux.intel.com> Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.dev> Link: https://patch.msgid.link/20250624122844.2761627-4-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Jaroslav Kysela <jkysela@redhat.com>
1 parent c184826 commit a2c9fc9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

sound/soc/sdca/sdca_asoc.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ static bool readonly_control(struct sdca_control *control)
9393

9494
/**
9595
* sdca_asoc_count_component - count the various component parts
96+
* @dev: Pointer to the device against which allocations will be done.
9697
* @function: Pointer to the Function information.
9798
* @num_widgets: Output integer pointer, will be filled with the
9899
* required number of DAPM widgets for the Function.
@@ -999,7 +1000,7 @@ static int populate_pin_switch(struct device *dev,
9991000
* sdca_asoc_populate_controls - fill in an array of ALSA controls for a Function
10001001
* @dev: Pointer to the device against which allocations will be done.
10011002
* @function: Pointer to the Function information.
1002-
* @route: Array of ALSA controls to be populated.
1003+
* @kctl: Array of ALSA controls to be populated.
10031004
*
10041005
* This function populates an array of ALSA controls from the DisCo
10051006
* information for a particular SDCA Function. Typically,
@@ -1246,7 +1247,11 @@ EXPORT_SYMBOL_NS(sdca_asoc_populate_dais, SND_SOC_SDCA);
12461247
* sdca_asoc_populate_component - fill in a component driver for a Function
12471248
* @dev: Pointer to the device against which allocations will be done.
12481249
* @function: Pointer to the Function information.
1249-
* @copmonent_drv: Pointer to the component driver to be populated.
1250+
* @component_drv: Pointer to the component driver to be populated.
1251+
* @dai_drv: Pointer to the DAI driver array to be allocated and populated.
1252+
* @num_dai_drv: Pointer to integer that will be populated with the number of
1253+
* DAI drivers.
1254+
* @ops: DAI ops pointer that will be used for each DAI driver.
12501255
*
12511256
* This function populates a snd_soc_component_driver structure based
12521257
* on the DisCo information for a particular SDCA Function. It does

0 commit comments

Comments
 (0)