oe-kbuild-all.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: AKASHI Takahiro <takahiro.akashi@linaro.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC 2/4] pinctrl: add pinctrl_gpio_get_config()
Date: Mon, 2 Oct 2023 13:47:26 +0800	[thread overview]
Message-ID: <202310021320.gYfm1nLQ-lkp@intel.com> (raw)
In-Reply-To: <20231002021602.260100-3-takahiro.akashi@linaro.org>

Hi AKASHI,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build errors:

[auto build test ERROR on linusw-pinctrl/devel]
[also build test ERROR on linusw-pinctrl/for-next brgl/gpio/for-next robh/for-next linus/master v6.6-rc4 next-20230929]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/AKASHI-Takahiro/pinctrl-define-PIN_CONFIG_INPUT/20231002-101835
base:   https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git devel
patch link:    https://lore.kernel.org/r/20231002021602.260100-3-takahiro.akashi%40linaro.org
patch subject: [RFC 2/4] pinctrl: add pinctrl_gpio_get_config()
config: x86_64-rhel-8.3 (https://download.01.org/0day-ci/archive/20231002/202310021320.gYfm1nLQ-lkp@intel.com/config)
compiler: gcc-12 (Debian 12.2.0-14) 12.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231002/202310021320.gYfm1nLQ-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202310021320.gYfm1nLQ-lkp@intel.com/

All errors (new ones prefixed by >>):

   drivers/pinctrl/core.c: In function 'pinctrl_gpio_get_config':
>> drivers/pinctrl/core.c:941:15: error: implicit declaration of function 'pin_config_get_for_pin' [-Werror=implicit-function-declaration]
     941 |         ret = pin_config_get_for_pin(pctldev, pin, config);
         |               ^~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +/pin_config_get_for_pin +941 drivers/pinctrl/core.c

   928	
   929	int pinctrl_gpio_get_config(unsigned int gpio, unsigned long *config)
   930	{
   931		struct pinctrl_gpio_range *range;
   932		struct pinctrl_dev *pctldev;
   933		int ret, pin;
   934	
   935		ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
   936		if (ret)
   937			return ret;
   938	
   939		mutex_lock(&pctldev->mutex);
   940		pin = gpio_to_pin(range, gpio);
 > 941		ret = pin_config_get_for_pin(pctldev, pin, config);
   942		mutex_unlock(&pctldev->mutex);
   943	
   944		return ret;
   945	}
   946	EXPORT_SYMBOL_GPL(pinctrl_gpio_get_config);
   947	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

       reply	other threads:[~2023-10-02  5:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20231002021602.260100-3-takahiro.akashi@linaro.org>
2023-10-02  5:47 ` kernel test robot [this message]
2023-10-02  6:44 ` [RFC 2/4] pinctrl: add pinctrl_gpio_get_config() 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=202310021320.gYfm1nLQ-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=takahiro.akashi@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).