summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBard Liao <yung-chuan.liao@linux.intel.com>2024-10-24 09:02:05 +0300
committerMark Brown <broonie@kernel.org>2024-10-24 15:22:34 +0300
commit4d9661e28be13f90db43b889fd15f4aad53de7d1 (patch)
treef2c7a3727d6b004aa74147f1df18d2944431ac5f
parenta77e6c12cd9755cff27a3ed8bafe403284d46bb8 (diff)
downloadlinux-4d9661e28be13f90db43b889fd15f4aad53de7d1.tar.xz
ASoC: rt-sdw-common: fix rt_sdca_index_update_bits function parameter description
Fix the mismatch between function parameter and description. Below warning are reported with W=1. warning: Function parameter or struct member 'val' not described in 'rt_sdca_index_update_bits' warning: Excess function parameter 'value' description in 'rt_sdca_index_update_bits' Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com> Reviewed-by: Shuming Fan <shumingf@realtek.com> Link: https://patch.msgid.link/20241024060205.20201-1-yung-chuan.liao@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/codecs/rt-sdw-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt-sdw-common.c b/sound/soc/codecs/rt-sdw-common.c
index 9f51fec383f9..ad61943ce75f 100644
--- a/sound/soc/codecs/rt-sdw-common.c
+++ b/sound/soc/codecs/rt-sdw-common.c
@@ -76,7 +76,7 @@ EXPORT_SYMBOL_GPL(rt_sdca_index_read);
* @nid: Realtek-defined ID.
* @reg: register.
* @mask: Bitmask to change
- * @value: New value for bitmask
+ * @val: New value for bitmask
*
* A value of zero will be returned on success, a negative errno will
* be returned in error cases.