Skip to content

Commit e90c7cd

Browse files
committed
remove tabs
1 parent 36b85dd commit e90c7cd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/linux/backend-v4l2.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
#include <signal.h>
6161
#include "rsutils/accelerators/gpu.h"
6262

63-
6463
#pragma GCC diagnostic ignored "-Woverflow"
6564

6665
const size_t MAX_DEV_PARENT_DIR = 10;
@@ -867,7 +866,7 @@ namespace librealsense
867866
const uint8_t GVD_PID_D457 = 0x12;
868867

869868
// device PID
870-
uint16_t device_pid = 0;
869+
uint16_t device_pid = 0;
871870

872871
int fd = open(dev_name.c_str(), O_RDWR);
873872
if (fd < 0)
@@ -912,7 +911,7 @@ namespace librealsense
912911
}
913912

914913
::close(fd);
915-
914+
916915
return device_pid;
917916
}
918917

@@ -962,14 +961,14 @@ namespace librealsense
962961
get_mipi_device_info(dev_name, bus_info, card);
963962

964963
// find device PID from depth video node
965-
static uint16_t device_pid = 0;
966-
try
964+
static uint16_t device_pid = 0;
965+
try
967966
{
968967
if (is_device_depth_node(dev_name))
969968
{
970969
device_pid = get_mipi_device_pid(dev_name);
971970
}
972-
}
971+
}
973972
catch(const std::exception & e)
974973
{
975974
LOG_WARNING("MIPI device product id detection issue, device will be skipped: " << e.what());

0 commit comments

Comments
 (0)