From 21ec0516cf0fb6b5a849ca8f47258554a99e386c Mon Sep 17 00:00:00 2001 From: Al Sutton Date: Tue, 16 Apr 2013 18:21:52 +0100 Subject: [PATCH] Add OUYA VID to known VID list Add the OUYA VID to the list of known USB VIDs to allow developers with OUYA consoles to have their device automatically recognized. Change-Id: I499114d8071747b972c24681fc0771f000ad9f9d --- adb/usb_vendors.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 604c46175..698f8a911 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -141,6 +141,8 @@ #define VENDOR_ID_XIAOMI 0x2717 // BYD's USB Vendor ID #define VENDOR_ID_BYD 0x19D1 +// OUYA's USB Vendor ID +#define VENDOR_ID_OUYA 0x2836 /** built-in vendor list */ @@ -198,6 +200,7 @@ int builtInVendorIds[] = { VENDOR_ID_OPPO, VENDOR_ID_XIAOMI, VENDOR_ID_BYD, + VENDOR_ID_OUYA, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))