* [linux-review:UPDATE-20200526-222646/Tero-Kristo/crypto-omap-sha-aes-fixes/20200511-211100 7/7] drivers/crypto/omap-sham.c:935:23: warning: no previous prototype for 'omap_sham_find_dev'
@ 2020-05-29 2:37 kbuild test robot
0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2020-05-29 2:37 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 1846 bytes --]
tree: https://github.com/0day-ci/linux/commits/UPDATE-20200526-222646/Tero-Kristo/crypto-omap-sha-aes-fixes/20200511-211100
head: 5c4f325ef89038e0c837ee316f9fee9c5336d1c0
commit: 5c4f325ef89038e0c837ee316f9fee9c5336d1c0 [7/7] crypto: omap-sham: add proper load balancing support for multicore
config: arm-allyesconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
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
git checkout 5c4f325ef89038e0c837ee316f9fee9c5336d1c0
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>
All warnings (new ones prefixed by >>, old ones prefixed by <<):
>> drivers/crypto/omap-sham.c:935:23: warning: no previous prototype for 'omap_sham_find_dev' [-Wmissing-prototypes]
935 | struct omap_sham_dev *omap_sham_find_dev(struct omap_sham_reqctx *ctx)
| ^~~~~~~~~~~~~~~~~~
vim +/omap_sham_find_dev +935 drivers/crypto/omap-sham.c
934
> 935 struct omap_sham_dev *omap_sham_find_dev(struct omap_sham_reqctx *ctx)
936 {
937 struct omap_sham_dev *dd;
938
939 if (ctx->dd)
940 return ctx->dd;
941
942 spin_lock_bh(&sham.lock);
943 dd = list_first_entry(&sham.dev_list, struct omap_sham_dev, list);
944 list_move_tail(&dd->list, &sham.dev_list);
945 ctx->dd = dd;
946 spin_unlock_bh(&sham.lock);
947
948 return dd;
949 }
950
---
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: 73988 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-05-29 2:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-29 2:37 [linux-review:UPDATE-20200526-222646/Tero-Kristo/crypto-omap-sha-aes-fixes/20200511-211100 7/7] drivers/crypto/omap-sham.c:935:23: warning: no previous prototype for 'omap_sham_find_dev' kbuild test robot
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.