firmware: cs_dsp: Clarify some kernel doc comments

Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20211117132300.1290-8-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Charles Keepax 2021-11-17 13:22:58 +00:00 коммит произвёл Mark Brown
Родитель 86c6080407
Коммит b329b3d394
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 24D68B725D5487D0
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -746,7 +746,7 @@ static int cs_dsp_coeff_write_ctrl_raw(struct cs_dsp_coeff_ctl *ctl,
* cs_dsp_coeff_write_ctrl() - Writes the given buffer to the given coefficient control * cs_dsp_coeff_write_ctrl() - Writes the given buffer to the given coefficient control
* @ctl: pointer to coefficient control * @ctl: pointer to coefficient control
* @buf: the buffer to write to the given control * @buf: the buffer to write to the given control
* @len: the length of the buffer * @len: the length of the buffer in bytes
* *
* Must be called with pwr_lock held. * Must be called with pwr_lock held.
* *
@ -808,7 +808,7 @@ static int cs_dsp_coeff_read_ctrl_raw(struct cs_dsp_coeff_ctl *ctl, void *buf, s
* cs_dsp_coeff_read_ctrl() - Reads the given coefficient control into the given buffer * cs_dsp_coeff_read_ctrl() - Reads the given coefficient control into the given buffer
* @ctl: pointer to coefficient control * @ctl: pointer to coefficient control
* @buf: the buffer to store to the given control * @buf: the buffer to store to the given control
* @len: the length of the buffer * @len: the length of the buffer in bytes
* *
* Must be called with pwr_lock held. * Must be called with pwr_lock held.
* *

Просмотреть файл

@ -76,8 +76,8 @@ struct cs_dsp_alg_region {
* @enabled: Flag indicating whether control is enabled * @enabled: Flag indicating whether control is enabled
* @list: List node for internal use * @list: List node for internal use
* @cache: Cached value of the control * @cache: Cached value of the control
* @offset: Offset of control within alg_region * @offset: Offset of control within alg_region in words
* @len: Length of the cached value * @len: Length of the cached value in bytes
* @set: Flag indicating the value has been written by the user * @set: Flag indicating the value has been written by the user
* @flags: Bitfield of WMFW_CTL_FLAG_ control flags defined in wmfw.h * @flags: Bitfield of WMFW_CTL_FLAG_ control flags defined in wmfw.h
* @type: One of the WMFW_CTL_TYPE_ control types defined in wmfw.h * @type: One of the WMFW_CTL_TYPE_ control types defined in wmfw.h