@@ -937,7 +937,7 @@ namespace librealsense
937937 info.unique_id = busnum + " -" + devpath + " -" + devnum;
938938 // Find the USB specification (USB2/3) type from the underlying device, traversing from
939939 // /sys/devices/.../M-N/3-6:1.0/video4linux/video0 up to /sys/devices/.../M-N/version
940- info.conn_spec = v4l_usb_logic::get_usb_connection_type (video_path + " /../../../" );
940+ info.usb_conn_spec = v4l_usb_logic::get_usb_connection_type (video_path + " /../../../" );
941941 info.uvc_capabilities = get_dev_capabilities (dev_name).device_caps ;
942942
943943 return info;
@@ -992,8 +992,8 @@ namespace librealsense
992992 break ;
993993 }
994994 }
995- info.conn_spec = usb_undefined;
996- info.mipi = true ;
995+ info.usb_conn_spec = usb_undefined;
996+ info.is_mipi = true ;
997997 info.uvc_capabilities = get_dev_capabilities (dev_name).device_caps ;
998998
999999 return info;
@@ -1223,7 +1223,7 @@ namespace librealsense
12231223 v4l_uvc_device::v4l_uvc_device (const uvc_device_info& info, bool use_memory_map)
12241224 : _name(info.id),
12251225 _device_path (info.device_path),
1226- _device_usb_spec(info.conn_spec ),
1226+ _device_usb_spec(info.usb_conn_spec ),
12271227 _info(info),
12281228 _is_capturing(false ),
12291229 _is_alive(true ),
@@ -2823,7 +2823,7 @@ namespace librealsense
28232823
28242824 std::shared_ptr<uvc_device> v4l_backend::create_uvc_device (uvc_device_info info) const
28252825 {
2826- bool mipi_device = info.mipi ;
2826+ bool mipi_device = info.is_mipi ;
28272827
28282828 auto v4l_uvc_dev = mipi_device ? std::make_shared<v4l_mipi_device>(info) :
28292829 ((!info.has_metadata_node ) ? std::make_shared<v4l_uvc_device>(info) :
0 commit comments