mirror of
https://github.com/torvalds/linux.git
synced 2026-05-02 13:32:40 -04:00
Some missing select statements were already added back, but I ran into
another one that is missing:
ERROR: modpost: "v4l2_fwnode_endpoint_free" [drivers/media/pci/intel/ivsc/ivsc-csi.ko] undefined!
ERROR: modpost: "v4l2_fwnode_endpoint_alloc_parse" [drivers/media/pci/intel/ivsc/ivsc-csi.ko] undefined!
ERROR: modpost: "v4l2_fwnode_endpoint_parse" [drivers/media/pci/intel/ivsc/ivsc-csi.ko] undefined!
Fixes: 29006e196a ("media: pci: intel: ivsc: Add CSI submodule")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
[Sakari Ailus: Drop V4L2_ASYNC dependency, it is implied now.]
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
16 lines
514 B
Plaintext
16 lines
514 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2023, Intel Corporation. All rights reserved.
|
|
|
|
config INTEL_VSC
|
|
tristate "Intel Visual Sensing Controller"
|
|
depends on INTEL_MEI && ACPI && VIDEO_DEV
|
|
select MEDIA_CONTROLLER
|
|
select VIDEO_V4L2_SUBDEV_API
|
|
select V4L2_FWNODE
|
|
help
|
|
This adds support for Intel Visual Sensing Controller (IVSC).
|
|
|
|
Enables the IVSC firmware services required for controlling
|
|
camera sensor ownership and CSI-2 link through Image Processing
|
|
Unit(IPU) driver of Intel.
|