From: kernel test robot <lkp@intel.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: clang-built-linux@googlegroups.com, alsa-devel@alsa-project.org,
kbuild-all@lists.01.org
Subject: [sound:for-next 141/141] sound/usb/card.c:841:29: error: expected ';' after expression
Date: Fri, 5 Jun 2020 03:20:08 +0800 [thread overview]
Message-ID: <202006050306.lRPnPMjR%lkp@intel.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 1978 bytes --]
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git for-next
head: 3398e5c7b0383a1795090d76545884091636644c
commit: 3398e5c7b0383a1795090d76545884091636644c [141/141] ALSA: usb-audio: Manage auto-pm of all bundled interfaces
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project ac47588bc4ff5927a01ed6fcd269ce86aba52a7c)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
git checkout 3398e5c7b0383a1795090d76545884091636644c
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>, old ones prefixed by <<):
>> sound/usb/card.c:841:29: error: expected ';' after expression
atomic_dec(&chip->active))
^
;
>> sound/usb/card.c:841:29: error: expected expression
2 errors generated.
vim +841 sound/usb/card.c
825
826 int snd_usb_autoresume(struct snd_usb_audio *chip)
827 {
828 int i, err;
829
830 if (atomic_read(&chip->shutdown))
831 return -EIO;
832 if (atomic_inc_return(&chip->active) != 1)
833 return 0;
834
835 for (i = 0; i < chip->num_interfaces; i++) {
836 err = usb_autopm_get_interface(chip->intf[i]);
837 if (err < 0) {
838 /* rollback */
839 while (--i >= 0)
840 usb_autopm_put_interface(chip->intf[i]);
> 841 atomic_dec(&chip->active))
842 return err;
843 }
844 }
845 return 0;
846 }
847
---
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: 73526 bytes --]
reply other threads:[~2020-06-04 19:21 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202006050306.lRPnPMjR%lkp@intel.com \
--to=lkp@intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=clang-built-linux@googlegroups.com \
--cc=kbuild-all@lists.01.org \
--cc=tiwai@suse.de \
/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