summarylogtreecommitdiffstats
path: root/0004-avoid-duplicate-symbols.patch
diff options
context:
space:
mode:
Diffstat (limited to '0004-avoid-duplicate-symbols.patch')
-rw-r--r--0004-avoid-duplicate-symbols.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/0004-avoid-duplicate-symbols.patch b/0004-avoid-duplicate-symbols.patch
new file mode 100644
index 000000000000..027a7bb9bbe5
--- /dev/null
+++ b/0004-avoid-duplicate-symbols.patch
@@ -0,0 +1,22 @@
+--- a/src/host/recovery.c
++++ b/src/host/recovery.c
+@@ -42,7 +42,7 @@
+ } recovery_entry_t;
+
+ /* list of recovery tokens */
+-TAILQ_HEAD(recovery_queue_s, recovery_entry_s) t_recovery_queue;
++static TAILQ_HEAD(recovery_queue_s, recovery_entry_s) t_recovery_queue;
+ static platform_mutex_t recovery_lock;
+
+
+--- a/src/host/usb-linux.c
++++ b/src/host/usb-linux.c
+@@ -79,7 +79,7 @@
+ static platform_thread_t findandattach_thread;
+ volatile int novacom_shutdown = 0;
+ /* list of recovery tokens */
+-TAILQ_HEAD(recovery_queue_s, recovery_entry_s) t_recovery_queue;
++static TAILQ_HEAD(recovery_queue_s, recovery_entry_s) t_recovery_queue;
+ static platform_mutex_t recovery_lock;
+
+