forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 327de73504d2d5ac897d86fe15c3aceaeb051da8 Mon Sep 17 00:00:00 2001 | ||
From: Nir <nir.azkiel@intel.com> | ||
Date: Tue, 7 May 2024 23:02:47 +0300 | ||
Subject: [PATCH] make realsense uvcvideo driver version unique | ||
|
||
--- | ||
drivers/media/usb/uvc/uvcvideo.h | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h | ||
index 6fb0a78b1..b35431ae1 100644 | ||
--- a/drivers/media/usb/uvc/uvcvideo.h | ||
+++ b/drivers/media/usb/uvc/uvcvideo.h | ||
@@ -44,8 +44,8 @@ | ||
/* ------------------------------------------------------------------------ | ||
* Driver specific constants. | ||
*/ | ||
- | ||
-#define DRIVER_VERSION "1.1.1" | ||
+#define DRIVER_VERSION_SUFFIX "realsense-patch" | ||
+#define DRIVER_VERSION "1.1.1-" DRIVER_VERSION_SUFFIX | ||
|
||
/* Number of isochronous URBs. */ | ||
#define UVC_URBS 5 | ||
-- | ||
2.34.1 | ||
|