From: kernel test robot <lkp@intel.com>
To: Sameer Pujar <spujar@nvidia.com>
Cc: kbuild-all@lists.01.org,
Linux Memory Management List <linux-mm@kvack.org>,
Mark Brown <broonie@kernel.org>
Subject: [linux-next:master 673/4736] sound/soc/generic/simple-card-utils.c:28:33: sparse: sparse: incorrect type in initializer (different base types)
Date: Mon, 5 Sep 2022 22:33:09 +0800 [thread overview]
Message-ID: <202209052235.BBo4f6mK-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head: e47eb90a0a9ae20b82635b9b99a8d0979b757ad8
commit: 047a05366f4bb2e32eabbd3c8990d1d91ab87c89 [673/4736] ASoC: simple-card-utils: Fixup DAI sample format
config: mips-randconfig-s031-20220905 (https://download.01.org/0day-ci/archive/20220905/202209052235.BBo4f6mK-lkp@intel.com/config)
compiler: mips-linux-gcc (GCC) 12.1.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# apt-get install sparse
# sparse version: v0.6.4-39-gce1a6720-dirty
# https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=047a05366f4bb2e32eabbd3c8990d1d91ab87c89
git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git fetch --no-tags linux-next master
git checkout 047a05366f4bb2e32eabbd3c8990d1d91ab87c89
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=mips SHELL=/bin/bash mm/ sound/soc/generic/
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
sparse warnings: (new ones prefixed by >>)
>> sound/soc/generic/simple-card-utils.c:28:33: sparse: sparse: incorrect type in initializer (different base types) @@ expected unsigned int [usertype] val @@ got restricted snd_pcm_format_t [usertype] @@
sound/soc/generic/simple-card-utils.c:28:33: sparse: expected unsigned int [usertype] val
sound/soc/generic/simple-card-utils.c:28:33: sparse: got restricted snd_pcm_format_t [usertype]
sound/soc/generic/simple-card-utils.c:29:33: sparse: sparse: incorrect type in initializer (different base types) @@ expected unsigned int [usertype] val @@ got restricted snd_pcm_format_t [usertype] @@
sound/soc/generic/simple-card-utils.c:29:33: sparse: expected unsigned int [usertype] val
sound/soc/generic/simple-card-utils.c:29:33: sparse: got restricted snd_pcm_format_t [usertype]
sound/soc/generic/simple-card-utils.c:30:33: sparse: sparse: incorrect type in initializer (different base types) @@ expected unsigned int [usertype] val @@ got restricted snd_pcm_format_t [usertype] @@
sound/soc/generic/simple-card-utils.c:30:33: sparse: expected unsigned int [usertype] val
sound/soc/generic/simple-card-utils.c:30:33: sparse: got restricted snd_pcm_format_t [usertype]
sound/soc/generic/simple-card-utils.c:31:33: sparse: sparse: incorrect type in initializer (different base types) @@ expected unsigned int [usertype] val @@ got restricted snd_pcm_format_t [usertype] @@
sound/soc/generic/simple-card-utils.c:31:33: sparse: expected unsigned int [usertype] val
sound/soc/generic/simple-card-utils.c:31:33: sparse: got restricted snd_pcm_format_t [usertype]
sound/soc/generic/simple-card-utils.c:32:33: sparse: sparse: incorrect type in initializer (different base types) @@ expected unsigned int [usertype] val @@ got restricted snd_pcm_format_t [usertype] @@
sound/soc/generic/simple-card-utils.c:32:33: sparse: expected unsigned int [usertype] val
sound/soc/generic/simple-card-utils.c:32:33: sparse: got restricted snd_pcm_format_t [usertype]
vim +28 sound/soc/generic/simple-card-utils.c
17
18 static void asoc_simple_fixup_sample_fmt(struct asoc_simple_data *data,
19 struct snd_pcm_hw_params *params)
20 {
21 int i;
22 struct snd_mask *mask = hw_param_mask(params,
23 SNDRV_PCM_HW_PARAM_FORMAT);
24 struct {
25 char *fmt;
26 u32 val;
27 } of_sample_fmt_table[] = {
> 28 { "s8", SNDRV_PCM_FORMAT_S8},
29 { "s16_le", SNDRV_PCM_FORMAT_S16_LE},
30 { "s24_le", SNDRV_PCM_FORMAT_S24_LE},
31 { "s24_3le", SNDRV_PCM_FORMAT_S24_3LE},
32 { "s32_le", SNDRV_PCM_FORMAT_S32_LE},
33 };
34
35 for (i = 0; i < ARRAY_SIZE(of_sample_fmt_table); i++) {
36 if (!strcmp(data->convert_sample_format,
37 of_sample_fmt_table[i].fmt)) {
38 snd_mask_none(mask);
39 snd_mask_set(mask, of_sample_fmt_table[i].val);
40 break;
41 }
42 }
43 }
44
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next reply other threads:[~2022-09-05 14:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-05 14:33 kernel test robot [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-09-05 10:59 kernel test robot
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=202209052235.BBo4f6mK-lkp@intel.com \
--to=lkp@intel.com \
--cc=broonie@kernel.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-mm@kvack.org \
--cc=spujar@nvidia.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