Commit ad85094b authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

Revert "media: staging: atomisp: Remove driver"



There are some interest on having this driver back, and I
can probably dedicate some time to address its issue. So,
let's ressurect it.

For now, the driver causes a recursive error and doesn't
build, so, make it depend on BROKEN.

This reverts commit 51b8dc51.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent ad3a44cb
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -15949,6 +15949,13 @@ L: stable@vger.kernel.org
S:	Supported
F:	Documentation/process/stable-kernel-rules.rst
STAGING - ATOMISP DRIVER
M:	Alan Cox <alan@linux.intel.com>
M:	Sakari Ailus <sakari.ailus@linux.intel.com>
L:	linux-media@vger.kernel.org
S:	Maintained
F:	drivers/staging/media/atomisp/
STAGING - COMEDI
M:	Ian Abbott <abbotti@mev.co.uk>
M:	H Hartley Sweeten <hsweeten@visionengravers.com>
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@ if STAGING_MEDIA && MEDIA_SUPPORT
# Please keep them in alphabetic order
source "drivers/staging/media/allegro-dvt/Kconfig"

source "drivers/staging/media/atomisp/Kconfig"

source "drivers/staging/media/hantro/Kconfig"

source "drivers/staging/media/imx/Kconfig"
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_VIDEO_ALLEGRO_DVT)	+= allegro-dvt/
obj-$(CONFIG_INTEL_ATOMISP)     += atomisp/
obj-$(CONFIG_VIDEO_IMX_MEDIA)	+= imx/
obj-$(CONFIG_VIDEO_MESON_VDEC)	+= meson/vdec/
obj-$(CONFIG_VIDEO_OMAP4)	+= omap4iss/
+14 −0
Original line number Diff line number Diff line
menuconfig INTEL_ATOMISP
	bool "Enable support to Intel MIPI camera drivers"
	depends on X86 && EFI && PCI && ACPI
	depends on BROKEN
	select MEDIA_CONTROLLER
	select COMMON_CLK
	help
	  Enable support for the Intel ISP2 camera interfaces and MIPI
	  sensor drivers.

if INTEL_ATOMISP
source "drivers/staging/media/atomisp/pci/Kconfig"
source "drivers/staging/media/atomisp/i2c/Kconfig"
endif
+6 −0
Original line number Diff line number Diff line
#
# Makefile for camera drivers.
#
obj-$(CONFIG_INTEL_ATOMISP) += pci/
obj-$(CONFIG_INTEL_ATOMISP) += i2c/
obj-$(CONFIG_INTEL_ATOMISP) += platform/
Loading