mirror of https://gitee.com/openkylin/linux.git
drivers/Kconfig: add several missing GENERIC_HARDIRQS dependencies
With this patch an allmodconfig finally builds on s390 again. Fixes these build errors: ERROR: "devm_request_threaded_irq" [drivers/spi/spi-altera.ko] undefined! ERROR: "devm_request_threaded_irq" [drivers/media/platform/sh_veu.ko] undefined! ERROR: "devm_request_threaded_irq" [drivers/dma/dw_dmac.ko] undefined! Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
2ffdd7e23c
commit
6c43a51961
|
@ -83,6 +83,7 @@ config INTEL_IOP_ADMA
|
||||||
|
|
||||||
config DW_DMAC
|
config DW_DMAC
|
||||||
tristate "Synopsys DesignWare AHB DMA support"
|
tristate "Synopsys DesignWare AHB DMA support"
|
||||||
|
depends on GENERIC_HARDIRQS
|
||||||
select DMA_ENGINE
|
select DMA_ENGINE
|
||||||
default y if CPU_AT32AP7000
|
default y if CPU_AT32AP7000
|
||||||
help
|
help
|
||||||
|
|
|
@ -204,7 +204,7 @@ config VIDEO_SAMSUNG_EXYNOS_GSC
|
||||||
|
|
||||||
config VIDEO_SH_VEU
|
config VIDEO_SH_VEU
|
||||||
tristate "SuperH VEU mem2mem video processing driver"
|
tristate "SuperH VEU mem2mem video processing driver"
|
||||||
depends on VIDEO_DEV && VIDEO_V4L2
|
depends on VIDEO_DEV && VIDEO_V4L2 && GENERIC_HARDIRQS
|
||||||
select VIDEOBUF2_DMA_CONTIG
|
select VIDEOBUF2_DMA_CONTIG
|
||||||
select V4L2_MEM2MEM_DEV
|
select V4L2_MEM2MEM_DEV
|
||||||
help
|
help
|
||||||
|
|
|
@ -55,6 +55,7 @@ comment "SPI Master Controller Drivers"
|
||||||
|
|
||||||
config SPI_ALTERA
|
config SPI_ALTERA
|
||||||
tristate "Altera SPI Controller"
|
tristate "Altera SPI Controller"
|
||||||
|
depends on GENERIC_HARDIRQS
|
||||||
select SPI_BITBANG
|
select SPI_BITBANG
|
||||||
help
|
help
|
||||||
This is the driver for the Altera SPI Controller.
|
This is the driver for the Altera SPI Controller.
|
||||||
|
@ -310,7 +311,7 @@ config SPI_PXA2XX_DMA
|
||||||
|
|
||||||
config SPI_PXA2XX
|
config SPI_PXA2XX
|
||||||
tristate "PXA2xx SSP SPI master"
|
tristate "PXA2xx SSP SPI master"
|
||||||
depends on ARCH_PXA || PCI || ACPI
|
depends on (ARCH_PXA || PCI || ACPI) && GENERIC_HARDIRQS
|
||||||
select PXA_SSP if ARCH_PXA
|
select PXA_SSP if ARCH_PXA
|
||||||
help
|
help
|
||||||
This enables using a PXA2xx or Sodaville SSP port as a SPI master
|
This enables using a PXA2xx or Sodaville SSP port as a SPI master
|
||||||
|
|
Loading…
Reference in New Issue