diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-04-20 20:42:50 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-04 16:49:09 +0300 |
commit | a31d19f88932d92ac8674e21409c08ca82607920 (patch) | |
tree | 426f5d7989efffb40429213d3506b1d243d77777 /drivers/media/pci/intel/ipu3/Kconfig | |
parent | 6ba0b22d206888aa524675a69ee796af9118fec2 (diff) | |
download | linux-a31d19f88932d92ac8674e21409c08ca82607920.tar.xz |
media: ipu3: allow building it with COMPILE_TEST on non-x86 archs
Despite depending on ACPI, this driver builds fine on non-x86
archtecture with COMPILE_TEST, as it doesn't depend on
ACPI-specific functions/structs.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/pci/intel/ipu3/Kconfig')
-rw-r--r-- | drivers/media/pci/intel/ipu3/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/pci/intel/ipu3/Kconfig b/drivers/media/pci/intel/ipu3/Kconfig index a82d3fe277d2..45cf99a512e4 100644 --- a/drivers/media/pci/intel/ipu3/Kconfig +++ b/drivers/media/pci/intel/ipu3/Kconfig @@ -2,10 +2,9 @@ config VIDEO_IPU3_CIO2 tristate "Intel ipu3-cio2 driver" depends on VIDEO_V4L2 && PCI depends on VIDEO_V4L2_SUBDEV_API - depends on X86 || COMPILE_TEST + depends on (X86 && ACPI) || COMPILE_TEST depends on MEDIA_CONTROLLER depends on HAS_DMA - depends on ACPI select V4L2_FWNODE select VIDEOBUF2_DMA_SG |