Commit 81acf394 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: platform: place Via drivers on a separate dir



In order to cleanup the main platform media directory, move Via
driver to its own directory.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 95495f2a
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -35,16 +35,7 @@ source "drivers/media/platform/nxp/Kconfig"

source "drivers/media/platform/marvell-ccic/Kconfig"

config VIDEO_VIA_CAMERA
	tristate "VIAFB camera controller support"
	depends on V4L_PLATFORM_DRIVERS
	depends on FB_VIA && VIDEO_V4L2
	select VIDEOBUF2_DMA_SG
	select VIDEO_OV7670
	help
	   Driver support for the integrated camera controller in VIA
	   Chrome9 chipsets.  Currently only tested on OLPC xo-1.5 systems
	   with ov7670 sensors.
source "drivers/media/platform/via/Kconfig"

source "drivers/media/platform/cadence/Kconfig"

+1 −1
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ obj-y += stm32/
obj-y += sunxi/
obj-y += tegra/vde/
obj-y += ti-vpe/
obj-y += via/
obj-y += vsp1/
obj-y += xilinx/

@@ -57,4 +58,3 @@ obj-$(CONFIG_VIDEO_RENESAS_FCP) += rcar-fcp.o
obj-$(CONFIG_VIDEO_RENESAS_FDP1)	+= rcar_fdp1.o
obj-$(CONFIG_VIDEO_RENESAS_JPU)		+= rcar_jpu.o
obj-$(CONFIG_VIDEO_SH_VOU)		+= sh_vou.o
obj-$(CONFIG_VIDEO_VIA_CAMERA)		+= via-camera.o
+11 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
config VIDEO_VIA_CAMERA
	tristate "VIAFB camera controller support"
	depends on V4L_PLATFORM_DRIVERS
	depends on FB_VIA && VIDEO_V4L2
	select VIDEOBUF2_DMA_SG
	select VIDEO_OV7670
	help
	   Driver support for the integrated camera controller in VIA
	   Chrome9 chipsets.  Currently only tested on OLPC xo-1.5 systems
	   with ov7670 sensors.
+2 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
Loading