RE: [PATCH 3/5] spi: Add support for Renesas CSI

From: Fabrizio Castro
Date: Thu Jun 22 2023 - 07:32:53 EST


Dear All,

> From: kernel test robot <lkp@xxxxxxxxx>
> Subject: Re: [PATCH 3/5] spi: Add support for Renesas CSI
>
> Hi Fabrizio,
>
> kernel test robot noticed the following build errors:
>
>
> All errors (new ones prefixed by >>):
>
> drivers/spi/spi-rzv2m-csi.c: In function 'rzv2m_csi_probe':
> >> drivers/spi/spi-rzv2m-csi.c:608:15: error: implicit declaration of
> function 'devm_request_irq'; did you mean 'devm_request_region'? [-
> Werror=implicit-function-declaration]
> 608 | ret = devm_request_irq(dev, irq,
> rzv2m_csi_irq_handler, 0,
> | ^~~~~~~~~~~~~~~~
> | devm_request_region

drivers/spi/spi-rzv2m-csi.c needs to include linux/interrupt.h ,
I'll send a v2 to address this.

> cc1: some warnings being treated as errors
>
> Kconfig warnings: (for reference only)
> WARNING: unmet direct dependencies detected for
> IOMMU_IO_PGTABLE_LPAE
> Depends on [n]: IOMMU_SUPPORT [=y] && (ARM || ARM64 || COMPILE_TEST
> [=n]) && !GENERIC_ATOMIC64 [=n]
> Selected by [y]:
> - IPMMU_VMSA [=y] && IOMMU_SUPPORT [=y] && (ARCH_RENESAS [=y] ||
> COMPILE_TEST [=n]) && !GENERIC_ATOMIC64 [=n]

This appears to be unrelated, it requires:
https://lore.kernel.org/linux-iommu/20230330165817.21920-1-rdunlap@xxxxxxxxxxxxx/

Cheers,
Fab