From: Bard Liao Date: Thu, 24 Oct 2024 06:02:05 +0000 (+0800) Subject: ASoC: rt-sdw-common: fix rt_sdca_index_update_bits function parameter description X-Git-Tag: microblaze-v6.16~25^2~76^2~79 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=4d9661e28be13f90db43b889fd15f4aad53de7d1;p=linux-2.6-microblaze.git 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 Reviewed-by: Shuming Fan Link: https://patch.msgid.link/20241024060205.20201-1-yung-chuan.liao@linux.intel.com Signed-off-by: Mark Brown --- 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.