From 03ca970a53ca3db184ecfdad6d0e812558515c09 Mon Sep 17 00:00:00 2001 From: Bard Liao Date: Mon, 21 Oct 2024 02:57:21 +0000 Subject: [PATCH] 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 --- sound/soc/codecs/rt-sdw-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/rt-sdw-common.c b/sound/soc/codecs/rt-sdw-common.c index 9f51fec383f9b3..ad61943ce75ffc 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.