2022-03-11 22:05:36

by Mauro Carvalho Chehab

[permalink] [raw]
Subject: [PATCH v2 30/38] media: platform: vde: move config to its own file

In order to better organize the platform/Kconfig, place
vde-specific config stuff on a separate Kconfig file.

Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
---

To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover.
See [PATCH v2 00/38] at: https://lore.kernel.org/all/[email protected]/

drivers/media/platform/Kconfig | 19 +------------------
drivers/media/platform/tegra/vde/Kconfig | 17 +++++++++++++++++
2 files changed, 18 insertions(+), 18 deletions(-)
create mode 100644 drivers/media/platform/tegra/vde/Kconfig

diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig
index 8d0fa9670eaa..9b8a5f4eaafc 100644
--- a/drivers/media/platform/Kconfig
+++ b/drivers/media/platform/Kconfig
@@ -72,6 +72,7 @@ source "drivers/media/platform/sti/hva/Kconfig"
source "drivers/media/platform/stm32/Kconfig"
source "drivers/media/platform/sunxi/sun8i-di/Kconfig"
source "drivers/media/platform/sunxi/sun8i-rotate/Kconfig"
+source "drivers/media/platform/tegra/vde/Kconfig"

config VIDEO_MUX
tristate "Video Multiplexer"
@@ -242,24 +243,6 @@ config VIDEO_TI_VPE_DEBUG
help
Enable debug messages on VPE driver.

-config VIDEO_TEGRA_VDE
- tristate "NVIDIA Tegra Video Decoder Engine driver"
- depends on V4L_MEM2MEM_DRIVERS
- depends on ARCH_TEGRA || COMPILE_TEST
- depends on VIDEO_DEV && VIDEO_V4L2
- select DMA_SHARED_BUFFER
- select IOMMU_IOVA
- select MEDIA_CONTROLLER
- select MEDIA_CONTROLLER_REQUEST_API
- select SRAM
- select VIDEOBUF2_DMA_CONTIG
- select VIDEOBUF2_DMA_SG
- select V4L2_H264
- select V4L2_MEM2MEM_DEV
- help
- Support for the NVIDIA Tegra video decoder unit.
- To compile this driver as a module choose m here.
-
# TI VIDEO PORT Helper Modules
# These will be selected by VPE and VIP
config VIDEO_TI_VPDMA
diff --git a/drivers/media/platform/tegra/vde/Kconfig b/drivers/media/platform/tegra/vde/Kconfig
new file mode 100644
index 000000000000..584b78d8d66c
--- /dev/null
+++ b/drivers/media/platform/tegra/vde/Kconfig
@@ -0,0 +1,17 @@
+config VIDEO_TEGRA_VDE
+ tristate "NVIDIA Tegra Video Decoder Engine driver"
+ depends on V4L_MEM2MEM_DRIVERS
+ depends on ARCH_TEGRA || COMPILE_TEST
+ depends on VIDEO_DEV && VIDEO_V4L2
+ select DMA_SHARED_BUFFER
+ select IOMMU_IOVA
+ select MEDIA_CONTROLLER
+ select MEDIA_CONTROLLER_REQUEST_API
+ select SRAM
+ select VIDEOBUF2_DMA_CONTIG
+ select VIDEOBUF2_DMA_SG
+ select V4L2_H264
+ select V4L2_MEM2MEM_DEV
+ help
+ Support for the NVIDIA Tegra video decoder unit.
+ To compile this driver as a module choose m here.
--
2.35.1


2022-03-14 03:56:46

by Dmitry Osipenko

[permalink] [raw]
Subject: Re: [PATCH v2 30/38] media: platform: vde: move config to its own file

11.03.2022 17:07, Mauro Carvalho Chehab пишет:
> In order to better organize the platform/Kconfig, place
> vde-specific config stuff on a separate Kconfig file.
>
> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
> ---
>
> To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover.
> See [PATCH v2 00/38] at: https://lore.kernel.org/all/[email protected]/
>
> drivers/media/platform/Kconfig | 19 +------------------
> drivers/media/platform/tegra/vde/Kconfig | 17 +++++++++++++++++
> 2 files changed, 18 insertions(+), 18 deletions(-)
> create mode 100644 drivers/media/platform/tegra/vde/Kconfig

Acked-by: Dmitry Osipenko <[email protected]>