diff options
Diffstat (limited to 'adb/usb_vendors.c')
-rw-r--r-- | adb/usb_vendors.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index b988115..3a8e8fd 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -127,6 +127,11 @@ #define VENDOR_ID_LAB126 0x1949 // Yulong Coolpad's USB Vendor ID #define VENDOR_ID_YULONG_COOLPAD 0x1EBF +// Kobo's USB Vendor ID +#define VENDOR_ID_KOBO 0x2237 +// Teleepoch's USB Vendor ID +#define VENDOR_ID_TELEEPOCH 0x2340 + /** built-in vendor list */ int builtInVendorIds[] = { @@ -176,6 +181,8 @@ int builtInVendorIds[] = { VENDOR_ID_SONY, VENDOR_ID_LAB126, VENDOR_ID_YULONG_COOLPAD, + VENDOR_ID_KOBO, + VENDOR_ID_TELEEPOCH, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) @@ -228,6 +235,7 @@ void usb_vendors_init(void) break; } } + fclose(f); } } } |