From: kernel test robot <lkp@intel.com>
To: Senthu Sivarajah <ssivaraj@stud.fra-uas.de>, vaibhav.sr@gmail.com
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
greybus-dev@lists.linaro.org, linux-staging@lists.linux.dev,
linux-kernel@vger.kernel.org,
Senthuran Sivarajah <ssivaraj@stud.fra-uas.de>
Subject: Re: [PATCH] Staging: greybus: audio_codec: changed a void function to return 0
Date: Fri, 29 Oct 2021 10:09:28 +0800 [thread overview]
Message-ID: <202110291059.uUAPW30Z-lkp@intel.com> (raw)
In-Reply-To: <20211028153808.9509-1-ssivaraj@stud.fra-uas.de>
[-- Attachment #1: Type: text/plain, Size: 1899 bytes --]
Hi Senthu,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on staging/staging-testing]
url: https://github.com/0day-ci/linux/commits/Senthu-Sivarajah/Staging-greybus-audio_codec-changed-a-void-function-to-return-0/20211029-000251
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 3d34b180323b487cad6f1e7560f1ec653110c899
config: i386-randconfig-a012-20211028 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 5db7568a6a1fcb408eb8988abdaff2a225a8eb72)
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
# https://github.com/0day-ci/linux/commit/0b582ab4c534ce5976b1d04848abb837a82d87c9
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Senthu-Sivarajah/Staging-greybus-audio_codec-changed-a-void-function-to-return-0/20211029-000251
git checkout 0b582ab4c534ce5976b1d04848abb837a82d87c9
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=i386
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 >>):
>> drivers/staging/greybus/audio_codec.c:1031:2: error: void function 'gbcodec_remove' should not return a value [-Wreturn-type]
return 0;
^ ~
1 error generated.
vim +/gbcodec_remove +1031 drivers/staging/greybus/audio_codec.c
1027
1028 static void gbcodec_remove(struct snd_soc_component *comp)
1029 {
1030 /* Empty function for now */
> 1031 return 0;
1032 }
1033
---
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: 36600 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH] Staging: greybus: audio_codec: changed a void function to return 0
Date: Fri, 29 Oct 2021 10:09:28 +0800 [thread overview]
Message-ID: <202110291059.uUAPW30Z-lkp@intel.com> (raw)
In-Reply-To: <20211028153808.9509-1-ssivaraj@stud.fra-uas.de>
[-- Attachment #1: Type: text/plain, Size: 1945 bytes --]
Hi Senthu,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on staging/staging-testing]
url: https://github.com/0day-ci/linux/commits/Senthu-Sivarajah/Staging-greybus-audio_codec-changed-a-void-function-to-return-0/20211029-000251
base: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 3d34b180323b487cad6f1e7560f1ec653110c899
config: i386-randconfig-a012-20211028 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 5db7568a6a1fcb408eb8988abdaff2a225a8eb72)
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
# https://github.com/0day-ci/linux/commit/0b582ab4c534ce5976b1d04848abb837a82d87c9
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Senthu-Sivarajah/Staging-greybus-audio_codec-changed-a-void-function-to-return-0/20211029-000251
git checkout 0b582ab4c534ce5976b1d04848abb837a82d87c9
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=i386
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 >>):
>> drivers/staging/greybus/audio_codec.c:1031:2: error: void function 'gbcodec_remove' should not return a value [-Wreturn-type]
return 0;
^ ~
1 error generated.
vim +/gbcodec_remove +1031 drivers/staging/greybus/audio_codec.c
1027
1028 static void gbcodec_remove(struct snd_soc_component *comp)
1029 {
1030 /* Empty function for now */
> 1031 return 0;
1032 }
1033
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 36600 bytes --]
next prev parent reply other threads:[~2021-10-29 2:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-28 15:38 [PATCH] Staging: greybus: audio_codec: changed a void function to return 0 Senthu Sivarajah
2021-10-28 16:35 ` Bryan Brattlof
2021-10-28 16:42 ` Greg KH
2021-10-28 17:19 ` Senthuran Sivarajah
2021-10-29 2:09 ` kernel test robot [this message]
2021-10-29 2:09 ` 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=202110291059.uUAPW30Z-lkp@intel.com \
--to=lkp@intel.com \
--cc=greybus-dev@lists.linaro.org \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=llvm@lists.linux.dev \
--cc=ssivaraj@stud.fra-uas.de \
--cc=vaibhav.sr@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.