All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-nvme:nvme-5.9 32/33] drivers/nvme/host/core.c:2872:18: warning: no previous prototype for 'nvme_find_cel'
@ 2020-07-01 16:33 kernel test robot
  0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2020-07-01 16:33 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 1308 bytes --]

tree:   git://git.infradead.org/nvme.git nvme-5.9
head:   ef6039f5210d8a542c34be19a910a53db4f566f2
commit: eec9d109de4b30b26604fbc7f6fbba402c9bf652 [32/33] nvme: support for multiple Command Sets Supported and Effects log pages
config: nios2-randconfig-c003-20200701 (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>

All warnings (new ones prefixed by >>):

>> drivers/nvme/host/core.c:2872:18: warning: no previous prototype for 'nvme_find_cel' [-Wmissing-prototypes]
    2872 | struct nvme_cel *nvme_find_cel(struct nvme_ctrl *ctrl, u8 csi)
         |                  ^~~~~~~~~~~~~

vim +/nvme_find_cel +2872 drivers/nvme/host/core.c

  2871	
> 2872	struct nvme_cel *nvme_find_cel(struct nvme_ctrl *ctrl, u8 csi)
  2873	{
  2874		struct nvme_cel *cel, *ret = NULL;
  2875	
  2876		spin_lock(&ctrl->lock);
  2877		list_for_each_entry(cel, &ctrl->cels, entry) {
  2878			if (cel->csi == csi) {
  2879				ret = cel;
  2880				break;
  2881			}
  2882		}
  2883		spin_unlock(&ctrl->lock);
  2884	
  2885		return ret;
  2886	}
  2887	

---
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: 18621 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-07-01 16:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-01 16:33 [linux-nvme:nvme-5.9 32/33] drivers/nvme/host/core.c:2872:18: warning: no previous prototype for 'nvme_find_cel' kernel 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.