aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-07-08 23:10:48 +0200
committerlaforge <laforge@osmocom.org>2020-07-09 20:54:50 +0000
commit3e5741352e68b7bcacabf676e95acaa382233d67 (patch)
tree878eee4961be01c5e70bdc8d654ed0254fd14811
parentb726cf9d5b14f029b7103658fd47c0787ed03c1d (diff)
migrate to proper allocated USB Product ID
The 0xe1e1 was a neat hack in the early days, but now 0x6145 has been allocated within the Openmoko USB VendorID. The current device firmware already uses the new ProductID, let's change it here, too. Change-Id: Iea6087ce02c931c796d9c9cae89cdf5b5e0b28c5
-rw-r--r--src/usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usb.c b/src/usb.c
index 578bc34..e8cd212 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -39,7 +39,7 @@
#define USB_VID 0x1d50
-#define USB_PID 0xe1e1
+#define USB_PID 0x6145
libusb_context *g_usb = NULL;