Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Mauro Carvalho Chehab <mchehab@kernel.org>

+15 -11
+1 -10
drivers/media/platform/Kconfig
··· 35 35 36 36 source "drivers/media/platform/marvell-ccic/Kconfig" 37 37 38 - config VIDEO_VIA_CAMERA 39 - tristate "VIAFB camera controller support" 40 - depends on V4L_PLATFORM_DRIVERS 41 - depends on FB_VIA && VIDEO_V4L2 42 - select VIDEOBUF2_DMA_SG 43 - select VIDEO_OV7670 44 - help 45 - Driver support for the integrated camera controller in VIA 46 - Chrome9 chipsets. Currently only tested on OLPC xo-1.5 systems 47 - with ov7670 sensors. 38 + source "drivers/media/platform/via/Kconfig" 48 39 49 40 source "drivers/media/platform/cadence/Kconfig" 50 41
+1 -1
drivers/media/platform/Makefile
··· 42 42 obj-y += sunxi/ 43 43 obj-y += tegra/vde/ 44 44 obj-y += ti-vpe/ 45 + obj-y += via/ 45 46 obj-y += vsp1/ 46 47 obj-y += xilinx/ 47 48 ··· 58 57 obj-$(CONFIG_VIDEO_RENESAS_FDP1) += rcar_fdp1.o 59 58 obj-$(CONFIG_VIDEO_RENESAS_JPU) += rcar_jpu.o 60 59 obj-$(CONFIG_VIDEO_SH_VOU) += sh_vou.o 61 - obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
drivers/media/platform/via-camera.c drivers/media/platform/via/via-camera.c
drivers/media/platform/via-camera.h drivers/media/platform/via/via-camera.h
+11
drivers/media/platform/via/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + config VIDEO_VIA_CAMERA 3 + tristate "VIAFB camera controller support" 4 + depends on V4L_PLATFORM_DRIVERS 5 + depends on FB_VIA && VIDEO_V4L2 6 + select VIDEOBUF2_DMA_SG 7 + select VIDEO_OV7670 8 + help 9 + Driver support for the integrated camera controller in VIA 10 + Chrome9 chipsets. Currently only tested on OLPC xo-1.5 systems 11 + with ov7670 sensors.
+2
drivers/media/platform/via/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o