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: [PATCH 9/9] soc/qcom: Add REVID driver
Date: Mon, 27 Jul 2020 05:36:54 +0800	[thread overview]
Message-ID: <202007270516.XXppAFO9%lkp@intel.com> (raw)
In-Reply-To: <20200726111215.22361-10-konradybcio@gmail.com>

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

Hi Konrad,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on clk/clk-next usb/usb-testing balbi-usb/testing/next linus/master v5.8-rc6 next-20200724]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Konrad-Dybcio/SDM630-36-60-driver-enablement/20200726-191809
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: x86_64-allmodconfig (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 8bf4c1f4fb257774f66c8cda07adc6c5e8668326)
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
        # 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 >>):

>> drivers/soc/qcom/qpnp-revid.c:113:25: error: redefinition of 'get_revid_data'
   struct pmic_revid_data *get_revid_data(struct device_node *dev_node)
                           ^
   include/linux/qpnp/qpnp-revid.h:364:25: note: previous definition is here
   struct pmic_revid_data *get_revid_data(struct device_node *dev_node)
                           ^
   1 error generated.

vim +/get_revid_data +113 drivers/soc/qcom/qpnp-revid.c

   102	
   103	/**
   104	 * get_revid_data - Return the revision information of PMIC
   105	 * @dev_node: Pointer to the revid peripheral of the PMIC for which
   106	 *		revision information is seeked
   107	 *
   108	 * CONTEXT: Should be called in non atomic context
   109	 *
   110	 * RETURNS: pointer to struct pmic_revid_data filled with the information
   111	 *		about the PMIC revision
   112	 */
 > 113	struct pmic_revid_data *get_revid_data(struct device_node *dev_node)
   114	{
   115		struct revid_chip *revid_chip;
   116	
   117		if (!dev_node)
   118			return ERR_PTR(-EINVAL);
   119	
   120		mutex_lock(&revid_chips_lock);
   121		list_for_each_entry(revid_chip, &revid_chips, link) {
   122			if (dev_node == revid_chip->dev_node) {
   123				mutex_unlock(&revid_chips_lock);
   124				return &revid_chip->data;
   125			}
   126		}
   127		mutex_unlock(&revid_chips_lock);
   128		return ERR_PTR(-EINVAL);
   129	}
   130	EXPORT_SYMBOL(get_revid_data);
   131	

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

  parent reply	other threads:[~2020-07-26 21:36 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-26 11:11 [PATCH 0/9] SDM630/36/60 driver enablement Konrad Dybcio
2020-07-26 11:11 ` Konrad Dybcio
2020-07-26 11:11 ` [PATCH 1/9] clk: qcom: gcc-sdm660: Add missing modem reset Konrad Dybcio
2020-07-26 11:11   ` Konrad Dybcio
2020-07-27 19:43   ` Stephen Boyd
2020-07-27 19:58     ` Konrad Dybcio
2020-07-27 19:58       ` Konrad Dybcio
2020-07-27 22:16   ` Stephen Boyd
2020-07-26 11:11 ` [PATCH 2/9] phy: qcom-qusb2: Add support for SDM630/660 Konrad Dybcio
2020-07-26 11:11   ` Konrad Dybcio
2020-07-31 20:26   ` Rob Herring
2020-07-31 20:26     ` Rob Herring
2020-07-26 11:12 ` [PATCH 3/9] drivers: usb: dwc3-qcom: Add sdm660 compatible Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-07-31 20:26   ` Rob Herring
2020-07-31 20:26     ` Rob Herring
2020-07-26 11:12 ` [PATCH 4/9] drm/msm/dsi: Add phy configuration for SDM630/636/660 Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-08-03 11:00   ` Vinod Koul
2020-08-03 11:00     ` Vinod Koul
2020-08-03 16:06     ` Rob Clark
2020-08-03 16:06       ` Rob Clark
2020-08-04 12:09       ` Vinod Koul
2020-08-04 12:09         ` Vinod Koul
2020-08-04 14:49         ` Rob Clark
2020-08-04 14:49           ` Rob Clark
2020-07-26 11:12 ` [PATCH 5/9] drm/msm/mdp5: Add MDP5 configuration for SDM630 Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-07-26 11:12 ` [PATCH 6/9] drm/msm/dsi: Add DSI configuration for SDM660 Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-07-26 11:12 ` [PATCH 7/9] drm/msm/mdp5: Add MDP5 configuration for SDM636/660 Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-07-26 11:12 ` [PATCH 8/9] clk: qcom: gcc-sdm660: Fix up gcc_mss_mnoc_bimc_axi_clk Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-07-27 19:41   ` Stephen Boyd
2020-07-27 19:58     ` Konrad Dybcio
2020-07-27 19:58       ` Konrad Dybcio
2020-07-27 22:20   ` Stephen Boyd
2020-07-26 11:12 ` [PATCH 9/9] soc/qcom: Add REVID driver Konrad Dybcio
2020-07-26 11:12   ` Konrad Dybcio
2020-07-26 11:29   ` Greg Kroah-Hartman
2020-07-26 11:29     ` Greg Kroah-Hartman
2020-07-26 11:40     ` Konrad Dybcio
2020-07-26 11:40       ` Konrad Dybcio
2020-07-26 12:04       ` Greg Kroah-Hartman
2020-07-26 12:04         ` Greg Kroah-Hartman
2020-07-26 18:43   ` kernel test robot
2020-07-26 21:36   ` kernel test robot [this message]
2020-07-27 18:13   ` Rob Herring
2020-07-27 18:13     ` Rob Herring
2020-07-27 18:13   ` Rob Herring
2020-07-27 18:13     ` Rob Herring

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=202007270516.XXppAFO9%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.