mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
Currently, VIDEO_AMD_ISP4_CAPTURE selects VIDEO_V4L2_SUBDEV_API without
ensuring MEDIA_CONTROLLER is enabled, causing an unmet dependency:
WARNING: unmet direct dependencies detected for VIDEO_V4L2_SUBDEV_API
Depends on [n]: MEDIA_SUPPORT [=m] && VIDEO_DEV [=m] && MEDIA_CONTROLLER [=n]
Selected by [m]:
- VIDEO_AMD_ISP4_CAPTURE [=m] && MEDIA_SUPPORT [=m] && MEDIA_PLATFORM_SUPPORT [=y] && MEDIA_PLATFORM_DRIVERS [=y] && DRM_AMDGPU [=m] && DRM_AMD_ISP [=y] && HAS_DMA [=y] && VIDEO_DEV [=m]
Many other options in this subsystem select MEDIA_CONTROLLER, let's do the
same here.
This unmet dependency bug was detected by kconfirm, a static analysis tool
for Kconfig.
Fixes: 9a54c28563 ("media: platform: amd: Introduce amd isp4 capture driver")
Signed-off-by: Julian Braha <julianbraha@gmail.com>
Reviewed-by: Bin Du <bin.du@amd.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
19 lines
576 B
Plaintext
19 lines
576 B
Plaintext
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
config VIDEO_AMD_ISP4_CAPTURE
|
|
tristate "AMD ISP4 and camera driver"
|
|
depends on DRM_AMDGPU && DRM_AMD_ISP
|
|
depends on HAS_DMA
|
|
depends on VIDEO_DEV
|
|
select MEDIA_CONTROLLER
|
|
select VIDEOBUF2_CORE
|
|
select VIDEOBUF2_MEMOPS
|
|
select VIDEOBUF2_V4L2
|
|
select VIDEOBUF2_VMALLOC
|
|
select VIDEO_V4L2_SUBDEV_API
|
|
help
|
|
This is support for AMD ISP4 and camera subsystem driver.
|
|
Say Y here to enable the ISP4 and camera device for video capture.
|
|
To compile this driver as a module, choose M here. The module will
|
|
be called amd_isp4_capture.
|