From: kernel test robot <lkp@intel.com>
To: jiebing chen via B4 Relay
<devnull+jiebing.chen.amlogic.com@kernel.org>,
Jerome Brunet <jbrunet@baylibre.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
linux-sound@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-clk@vger.kernel.org,
jian.xu@amlogic.com, shuai.li@amlogic.com, zhe.wang@amlogic.com,
jiebing chen <jiebing.chen@amlogic.com>
Subject: Re: [PATCH v4 4/6] ASoC: meson: g12a-toacodec: Add s4 tocodec driver
Date: Thu, 20 Mar 2025 16:29:52 +0800 [thread overview]
Message-ID: <202503201641.wf8Oe0aR-lkp@intel.com> (raw)
In-Reply-To: <20250319-audio_drvier-v4-4-686867fad719@amlogic.com>
Hi jiebing,
kernel test robot noticed the following build warnings:
[auto build test WARNING on 6ecd20965bdc21b265a0671ccf36d9ad8043f5ab]
url: https://github.com/intel-lab-lkp/linux/commits/jiebing-chen-via-B4-Relay/dt-bindings-clock-meson-Add-audio-power-domain-for-s4-soc/20250319-151110
base: 6ecd20965bdc21b265a0671ccf36d9ad8043f5ab
patch link: https://lore.kernel.org/r/20250319-audio_drvier-v4-4-686867fad719%40amlogic.com
patch subject: [PATCH v4 4/6] ASoC: meson: g12a-toacodec: Add s4 tocodec driver
config: s390-allmodconfig (https://download.01.org/0day-ci/archive/20250320/202503201641.wf8Oe0aR-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250320/202503201641.wf8Oe0aR-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503201641.wf8Oe0aR-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> sound/soc/meson/g12a-toacodec.c:135:38: warning: unused variable 's4_toacodec_clk_enable' [-Wunused-const-variable]
135 | static const struct snd_kcontrol_new s4_toacodec_clk_enable =
| ^~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
vim +/s4_toacodec_clk_enable +135 sound/soc/meson/g12a-toacodec.c
112
113 static SOC_ENUM_SINGLE_DECL(g12a_toacodec_mux_enum, TOACODEC_CTRL0,
114 CTRL0_DAT_SEL_LSB,
115 g12a_toacodec_mux_texts);
116
117 static SOC_ENUM_SINGLE_DECL(sm1_toacodec_mux_enum, TOACODEC_CTRL0,
118 CTRL0_DAT_SEL_SM1_LSB,
119 g12a_toacodec_mux_texts);
120
121 static const struct snd_kcontrol_new g12a_toacodec_mux =
122 SOC_DAPM_ENUM_EXT("Source", g12a_toacodec_mux_enum,
123 snd_soc_dapm_get_enum_double,
124 g12a_toacodec_mux_put_enum);
125
126 static const struct snd_kcontrol_new sm1_toacodec_mux =
127 SOC_DAPM_ENUM_EXT("Source", sm1_toacodec_mux_enum,
128 snd_soc_dapm_get_enum_double,
129 g12a_toacodec_mux_put_enum);
130
131 static const struct snd_kcontrol_new g12a_toacodec_out_enable =
132 SOC_DAPM_SINGLE_AUTODISABLE("Switch", TOACODEC_CTRL0,
133 CTRL0_ENABLE_SHIFT, 1, 0);
134
> 135 static const struct snd_kcontrol_new s4_toacodec_clk_enable =
136 SOC_DAPM_DOUBLE("Switch", TOACODEC_CTRL0,
137 CTRL0_BCLK_ENABLE_SHIFT, CTRL0_MCLK_ENABLE_SHIFT, 1, 0);
138
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-03-20 8:30 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-19 7:04 [PATCH v4 0/6] Add support for S4 audio jiebing chen via B4 Relay
2025-03-19 7:04 ` [PATCH v4 1/6] dt-bindings: clock: meson: Add audio power domain for s4 soc jiebing chen via B4 Relay
2025-03-19 8:38 ` Rob Herring (Arm)
2025-03-20 2:43 ` Jiebing Chen
2025-03-19 7:04 ` [PATCH v4 2/6] dt-bindings: clock: axg-audio: Add mclk and sclk pad clock ids jiebing chen via B4 Relay
2025-03-19 8:22 ` Krzysztof Kozlowski
2025-03-19 10:09 ` Jiebing Chen
2025-03-19 19:31 ` Krzysztof Kozlowski
2025-03-20 2:26 ` Jiebing Chen
2025-03-20 2:29 ` Jiebing Chen
2025-03-19 7:04 ` [PATCH v4 3/6] dt-bindings: Asoc: axg-audio: Add s4 audio tocodec jiebing chen via B4 Relay
2025-03-19 8:23 ` Krzysztof Kozlowski
2025-03-19 7:04 ` [PATCH v4 4/6] ASoC: meson: g12a-toacodec: Add s4 tocodec driver jiebing chen via B4 Relay
2025-03-19 19:02 ` kernel test robot
2025-03-20 8:29 ` kernel test robot [this message]
2025-03-20 8:46 ` Jerome Brunet
2025-03-20 8:53 ` Jiebing Chen
2025-03-19 7:04 ` [PATCH v4 5/6] clk: meson: axg-audio: Add the mclk pad div for s4 chip jiebing chen via B4 Relay
2025-03-20 8:42 ` Jerome Brunet
2025-03-20 8:59 ` Jiebing Chen
2025-03-20 10:05 ` kernel test robot
2025-03-19 7:04 ` [PATCH v4 6/6] arm64: dts: amlogic: Add Amlogic S4 Audio jiebing chen via B4 Relay
2025-03-19 8:26 ` Krzysztof Kozlowski
2025-03-19 8:46 ` Jiebing Chen
2025-03-19 8:49 ` Krzysztof Kozlowski
2025-03-19 10:38 ` Jiebing Chen
2025-03-19 19:31 ` Krzysztof Kozlowski
2025-03-20 2:31 ` Jiebing Chen
2025-03-19 23:10 ` [PATCH v4 0/6] Add support for S4 audio Rob Herring (Arm)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202503201641.wf8Oe0aR-lkp@intel.com \
--to=lkp@intel.com \
--cc=broonie@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=devnull+jiebing.chen.amlogic.com@kernel.org \
--cc=jbrunet@baylibre.com \
--cc=jian.xu@amlogic.com \
--cc=jiebing.chen@amlogic.com \
--cc=khilman@baylibre.com \
--cc=krzk@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=martin.blumenstingl@googlemail.com \
--cc=mturquette@baylibre.com \
--cc=neil.armstrong@linaro.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=shuai.li@amlogic.com \
--cc=tiwai@suse.com \
--cc=zhe.wang@amlogic.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox