From 5410592be6ede9dc8952cb8e914d3c6ead7ce27e Mon Sep 17 00:00:00 2001 From: Dmitry Perchanov Date: Thu, 22 Feb 2024 18:32:45 +0200 Subject: [PATCH] backend: patch tegra vi regex Signed-off-by: Dmitry Perchanov --- src/linux/backend-v4l2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linux/backend-v4l2.cpp b/src/linux/backend-v4l2.cpp index f4d98ff563..ccd15d2ef3 100644 --- a/src/linux/backend-v4l2.cpp +++ b/src/linux/backend-v4l2.cpp @@ -998,7 +998,7 @@ namespace librealsense else if(mipi_rs_enum_nodes.empty()) //video4linux devices that are not USB devices and not previously enumerated by rs links { // filter out all posible codecs, work only with compatible driver - static const std::regex rs_mipi_compatible("tegra|ipu6"); + static const std::regex rs_mipi_compatible("[.]vi:|ipu6"); info = get_info_from_mipi_device_path(video_path, name); if (!regex_search(info.unique_id, rs_mipi_compatible)) { continue;