From: kernel test robot <lkp@intel.com>
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>, broonie@kernel.org
Cc: kbuild-all@lists.01.org, robh@kernel.org,
devicetree@vger.kernel.org, perex@perex.cz,
alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
lgirdwood@gmail.com,
Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Subject: Re: [PATCH v4 3/9] ASoC: codecs: wcd938x: add basic driver
Date: Thu, 15 Apr 2021 10:54:27 +0800 [thread overview]
Message-ID: <202104151010.VYTuVgXF-lkp@intel.com> (raw)
In-Reply-To: <20210414154845.21964-4-srinivas.kandagatla@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 2082 bytes --]
Hi Srinivas,
I love your patch! Perhaps something to improve:
[auto build test WARNING on asoc/for-next]
[also build test WARNING on robh/for-next sound/for-next v5.12-rc7 next-20210414]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Srinivas-Kandagatla/ASoC-codecs-add-wcd938x-support/20210414-235130
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
config: nios2-randconfig-m031-20210414 (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
smatch warnings:
sound/soc/codecs/wcd938x.c:1737 wcd938x_add_slave_components() warn: inconsistent indenting
vim +1737 sound/soc/codecs/wcd938x.c
1715
1716 static int wcd938x_add_slave_components(struct wcd938x_priv *wcd938x,
1717 struct device *dev,
1718 struct component_match **matchptr)
1719 {
1720 struct device_node *np;
1721
1722 np = dev->of_node;
1723
1724 wcd938x->rxnode = of_parse_phandle(np, "qcom,rx-device", 0);
1725 if (!wcd938x->rxnode) {
1726 dev_err(dev, "%s: Rx-device node not defined\n", __func__);
1727 return -ENODEV;
1728 }
1729
1730 of_node_get(wcd938x->rxnode);
1731 component_match_add_release(dev, matchptr, wcd938x_release_of,
1732 wcd938x_compare_of, wcd938x->rxnode);
1733
1734 wcd938x->txnode = of_parse_phandle(np, "qcom,tx-device", 0);
1735 if (!wcd938x->txnode) {
1736 dev_err(dev, "%s: Tx-device node not defined\n", __func__);
> 1737 return -ENODEV;
1738 }
1739 of_node_get(wcd938x->txnode);
1740 component_match_add_release(dev, matchptr, wcd938x_release_of,
1741 wcd938x_compare_of, wcd938x->txnode);
1742 return 0;
1743 }
1744
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 35170 bytes --]
next prev parent reply other threads:[~2021-04-15 2:54 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-14 15:48 [PATCH v4 0/9] ASoC: codecs: add wcd938x support Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 1/9] ASoC: dt-bindings: wcd938x: add bindings for wcd938x Srinivas Kandagatla
2021-04-15 16:29 ` Rob Herring
2021-04-15 16:53 ` Srinivas Kandagatla
2021-04-30 8:20 ` Srinivas Kandagatla
2021-04-15 17:06 ` Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 2/9] ASoC: codecs: wcd-clsh: add new version support Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 3/9] ASoC: codecs: wcd938x: add basic driver Srinivas Kandagatla
2021-04-15 1:15 ` kernel test robot
2021-04-15 2:54 ` kernel test robot [this message]
2021-04-14 15:48 ` [PATCH v4 4/9] ASoC: dt-bindings: wcd938x-sdw: add bindings for wcd938x-sdw Srinivas Kandagatla
2021-04-15 16:39 ` Rob Herring
2021-04-15 16:57 ` Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 5/9] ASoC: codecs: wcd938x-sdw: add SoundWire driver Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 6/9] ASoC: codecs: wcd938x: add basic controls Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 7/9] ASoC: codecs: wcd938x: add playback dapm widgets Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 8/9] ASoC: codecs: wcd938x: add capture " Srinivas Kandagatla
2021-04-14 15:48 ` [PATCH v4 9/9] ASoC: codecs: wcd938x: add audio routing Srinivas Kandagatla
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=202104151010.VYTuVgXF-lkp@intel.com \
--to=lkp@intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=kbuild-all@lists.01.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=srinivas.kandagatla@linaro.org \
/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