All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH v1 1/2] ufs: support various values per device
Date: Sat, 20 Jun 2020 18:01:20 +0800	[thread overview]
Message-ID: <202006201725.jpUWrMzb%lkp@intel.com> (raw)
In-Reply-To: <1592638297-36155-2-git-send-email-kwmad.kim@samsung.com>

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

Hi Kiwoong,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on scsi/for-next]
[also build test WARNING on mkp-scsi/for-next v5.8-rc1 next-20200618]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use  as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Kiwoong-Kim/support-various-values-per-device/20200620-154217
base:   https://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git for-next
config: alpha-allyesconfig (attached as .config)
compiler: alpha-linux-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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=alpha 

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 >>, old ones prefixed by <<):

>> drivers/scsi/ufs/ufshcd.c:6941:6: warning: no previous prototype for 'ufshcd_set_dev_values' [-Wmissing-prototypes]
6941 | void ufshcd_set_dev_values(struct ufs_hba *hba, struct ufs_dev_value *value)
|      ^~~~~~~~~~~~~~~~~~~~~

vim +/ufshcd_set_dev_values +6941 drivers/scsi/ufs/ufshcd.c

  6940	
> 6941	void ufshcd_set_dev_values(struct ufs_hba *hba, struct ufs_dev_value *value)
  6942	{
  6943		struct ufs_dev_value *f;
  6944		struct ufs_dev_info *dev_info = &hba->dev_info;
  6945	
  6946		if (!value)
  6947			return;
  6948	
  6949		for (f = value; f->val; f++) {
  6950			if ((f->wmanufacturerid == dev_info->wmanufacturerid ||
  6951			     f->wmanufacturerid == UFS_ANY_VENDOR) &&
  6952			     ((dev_info->model &&
  6953			       STR_PRFX_EQUAL(f->model, dev_info->model)) ||
  6954			      !strcmp(f->model, UFS_ANY_MODEL))) {
  6955				f->enable = true;
  6956				hba->dev_value[f->key] = f->val;
  6957			}
  6958		}
  6959	}
  6960	EXPORT_SYMBOL_GPL(ufshcd_set_dev_values);
  6961	

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

  reply	other threads:[~2020-06-20 10:01 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20200620073912epcas2p469d0082af35ff54a8e84793feed2ab6d@epcas2p4.samsung.com>
2020-06-20  7:31 ` [RFC PATCH v1 0/2] support various values per device Kiwoong Kim
2020-06-20  7:31   ` [RFC PATCH v1 1/2] ufs: " Kiwoong Kim
2020-06-20 10:01     ` kernel test robot [this message]
2020-06-20 12:54     ` kernel test robot
2020-06-20 16:26     ` Bart Van Assche
2020-06-23  1:50       ` Kiwoong Kim
2020-06-20  7:31   ` [RFC PATCH v1 2/2] ufs: change the way to complete fDeviceInit Kiwoong Kim
2020-06-20 16:27     ` Bart Van Assche
2020-06-23  1:51       ` Kiwoong Kim
2020-06-21  8:22   ` [RFC PATCH v1 0/2] support various values per device Avri Altman
2020-06-23  2:14     ` Kiwoong Kim

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=202006201725.jpUWrMzb%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.