All of lore.kernel.org
 help / color / mirror / Atom feed
* [pinctrl:devel 140/153] drivers/pinctrl/bcm/pinctrl-bcm2835.c:386:57: error: 'struct gpio_irq_chip' has no member named 'irqdomain'; did you mean 'domain'?
@ 2017-11-08 15:31 kbuild test robot
  0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2017-11-08 15:31 UTC (permalink / raw)
  To: Thierry Reding; +Cc: kbuild-all, linux-gpio, Linus Walleij

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git devel
head:   bfcadc85ef134881fce5f8635648e36de1ab4c9d
commit: f0fbe7bce733561b76a5b55c5f4625888acd3792 [140/153] gpio: Move irqdomain into struct gpio_irq_chip
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout f0fbe7bce733561b76a5b55c5f4625888acd3792
        # save the attached .config to linux build tree
        make.cross ARCH=arm64 

All errors (new ones prefixed by >>):

   drivers/pinctrl/bcm/pinctrl-bcm2835.c: In function 'bcm2835_gpio_irq_handle_bank':
>> drivers/pinctrl/bcm/pinctrl-bcm2835.c:386:57: error: 'struct gpio_irq_chip' has no member named 'irqdomain'; did you mean 'domain'?
      generic_handle_irq(irq_linear_revmap(pc->gpio_chip.irq.irqdomain,
                                                            ^

vim +386 drivers/pinctrl/bcm/pinctrl-bcm2835.c

   369	
   370	static void bcm2835_gpio_irq_handle_bank(struct bcm2835_pinctrl *pc,
   371						 unsigned int bank, u32 mask)
   372	{
   373		unsigned long events;
   374		unsigned offset;
   375		unsigned gpio;
   376		unsigned int type;
   377	
   378		events = bcm2835_gpio_rd(pc, GPEDS0 + bank * 4);
   379		events &= mask;
   380		events &= pc->enabled_irq_map[bank];
   381		for_each_set_bit(offset, &events, 32) {
   382			gpio = (32 * bank) + offset;
   383			/* FIXME: no clue why the code looks up the type here */
   384			type = pc->irq_type[gpio];
   385	
 > 386			generic_handle_irq(irq_linear_revmap(pc->gpio_chip.irq.irqdomain,
   387							     gpio));
   388		}
   389	}
   390	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 36740 bytes --]

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

only message in thread, other threads:[~2017-11-08 15:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-08 15:31 [pinctrl:devel 140/153] drivers/pinctrl/bcm/pinctrl-bcm2835.c:386:57: error: 'struct gpio_irq_chip' has no member named 'irqdomain'; did you mean 'domain'? kbuild 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.