All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Paul Louvel <paul.louvel@bootlin.com>
Cc: oe-kbuild-all@lists.linux.dev,
	"Christophe Leroy (CS GROUP)" <chleroy@kernel.org>
Subject: [linux-next:master 11035/13093] drivers/soc/fsl/qe/gpio.c:176: undefined reference to `of_irq_parse_raw'
Date: Thu, 06 Aug 2026 09:27:41 +0800	[thread overview]
Message-ID: <202608060954.ymFeQSY6-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   1701fda2f58e345c050f4309971bdc07cd6146ba
commit: e75fcf32f93ef32cd020a63ffc1808303655a43b [11035/13093] soc: fsl: qe: Add support of IRQs in QE GPIO
config: sparc64-randconfig-002-20260806 (https://download.01.org/0day-ci/archive/20260806/202608060954.ymFeQSY6-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260806/202608060954.ymFeQSY6-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/202608060954.ymFeQSY6-lkp@intel.com/

All errors (new ones prefixed by >>):

   sparc64-linux-ld: drivers/soc/fsl/qe/gpio.o: in function `qe_gpio_to_irq':
>> drivers/soc/fsl/qe/gpio.c:176: undefined reference to `of_irq_parse_raw'


vim +176 drivers/soc/fsl/qe/gpio.c

   163	
   164	static int qe_gpio_to_irq(struct gpio_chip *gc, unsigned int gpio)
   165	{
   166		struct qe_gpio_chip *qe_gc = gpiochip_get_data(gc);
   167		struct of_phandle_args oirq;
   168		struct irq_domain *domain;
   169		int ret;
   170	
   171		oirq.np = qe_gc->np;
   172		oirq.args_count = 2;
   173		oirq.args[0] = gpio;
   174		oirq.args[1] = 0;
   175	
 > 176		ret = of_irq_parse_raw(NULL, &oirq);
   177		if (ret)
   178			return ret;
   179	
   180		domain = irq_find_host(oirq.np);
   181		if (!domain)
   182			return -EPROBE_DEFER;
   183	
   184		return irq_create_of_mapping(&oirq);
   185	}
   186	

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

             reply	other threads:[~2026-08-06  1:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-06  1:27 kernel test robot [this message]
2026-08-07  4:57 ` [linux-next:master 11035/13093] drivers/soc/fsl/qe/gpio.c:176: undefined reference to `of_irq_parse_raw' Christophe Leroy (CS GROUP)

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=202608060954.ymFeQSY6-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=chleroy@kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=paul.louvel@bootlin.com \
    /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.