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

media: platform: place Aspeed driver on a separate dir

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

Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>

+15 -11
+1 -1
MAINTAINERS
··· 3026 3026 L: openbmc@lists.ozlabs.org (moderated for non-subscribers) 3027 3027 S: Maintained 3028 3028 F: Documentation/devicetree/bindings/media/aspeed-video.txt 3029 - F: drivers/media/platform/aspeed-video.c 3029 + F: drivers/media/platform/aspeed/ 3030 3030 3031 3031 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS 3032 3032 M: Corentin Chary <corentin.chary@gmail.com>
+1 -9
drivers/media/platform/Kconfig
··· 50 50 51 51 source "drivers/media/platform/omap/Kconfig" 52 52 53 - config VIDEO_ASPEED 54 - tristate "Aspeed AST2400 and AST2500 Video Engine driver" 55 - depends on V4L_PLATFORM_DRIVERS 56 - depends on VIDEO_V4L2 57 - select VIDEOBUF2_DMA_CONTIG 58 - help 59 - Support for the Aspeed Video Engine (VE) embedded in the Aspeed 60 - AST2400 and AST2500 SOCs. The VE can capture and compress video data 61 - from digital or analog sources. 53 + source "drivers/media/platform/aspeed/Kconfig" 62 54 63 55 config VIDEO_SH_VOU 64 56 tristate "SuperH VOU video output driver"
+1 -1
drivers/media/platform/Makefile
··· 6 6 # Place here, alphabetically sorted by directory 7 7 # (e. g. LC_ALL=C sort Makefile) 8 8 obj-y += allegro-dvt/ 9 + obj-y += aspeed/ 9 10 obj-y += am437x/ 10 11 obj-y += amphion/ 11 12 obj-y += atmel/ ··· 48 47 # Please place here only ancillary drivers that aren't SoC-specific 49 48 # Please keep it alphabetically sorted by Kconfig name 50 49 # (e. g. LC_ALL=C sort Makefile) 51 - obj-$(CONFIG_VIDEO_ASPEED) += aspeed-video.o 52 50 obj-$(CONFIG_VIDEO_IMX_PXP) += imx-pxp.o 53 51 obj-$(CONFIG_VIDEO_MEM2MEM_DEINTERLACE) += m2m-deinterlace.o 54 52 obj-$(CONFIG_VIDEO_MUX) += video-mux.o
drivers/media/platform/aspeed-video.c drivers/media/platform/aspeed/aspeed-video.c
+10
drivers/media/platform/aspeed/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + config VIDEO_ASPEED 3 + tristate "Aspeed AST2400 and AST2500 Video Engine driver" 4 + depends on V4L_PLATFORM_DRIVERS 5 + depends on VIDEO_V4L2 6 + select VIDEOBUF2_DMA_CONTIG 7 + help 8 + Support for the Aspeed Video Engine (VE) embedded in the Aspeed 9 + AST2400 and AST2500 SOCs. The VE can capture and compress video data 10 + from digital or analog sources.
+2
drivers/media/platform/aspeed/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + obj-$(CONFIG_VIDEO_ASPEED) += aspeed-video.o