aboutsummaryrefslogtreecommitdiffstats
path: root/minadbd/transport_usb.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2012-03-20 09:40:04 -0700
committerDoug Zongker <dougz@android.com>2012-03-20 09:58:12 -0700
commit098d1f63c64cdc0975ce8cd650e82e4043fc2600 (patch)
tree08c97c14b3cf9e501cf5b2ff125cb827db985fbf /minadbd/transport_usb.c
parent703ed152147d90a549a2fee7cda5771703e502a0 (diff)
downloadbootable_recovery-098d1f63c64cdc0975ce8cd650e82e4043fc2600.zip
bootable_recovery-098d1f63c64cdc0975ce8cd650e82e4043fc2600.tar.gz
bootable_recovery-098d1f63c64cdc0975ce8cd650e82e4043fc2600.tar.bz2
remove unused code from minadbd
Change-Id: I2f192c67ef425a53a1dba65d3e0544c1d5a567bd
Diffstat (limited to 'minadbd/transport_usb.c')
-rw-r--r--minadbd/transport_usb.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/minadbd/transport_usb.c b/minadbd/transport_usb.c
index ee6b637..91cbf61 100644
--- a/minadbd/transport_usb.c
+++ b/minadbd/transport_usb.c
@@ -23,10 +23,6 @@
#define TRACE_TAG TRACE_TRANSPORT
#include "adb.h"
-#if ADB_HOST
-#include "usb_vendors.h"
-#endif
-
#ifdef HAVE_BIG_ENDIAN
#define H4(x) (((x) & 0xFF000000) >> 24) | (((x) & 0x00FF0000) >> 8) | (((x) & 0x0000FF00) << 8) | (((x) & 0x000000FF) << 24)
static inline void fix_endians(apacket *p)
@@ -121,28 +117,5 @@ void init_usb_transport(atransport *t, usb_handle *h, int state)
t->type = kTransportUsb;
t->usb = h;
-#if ADB_HOST
- HOST = 1;
-#else
HOST = 0;
-#endif
-}
-
-#if ADB_HOST
-int is_adb_interface(int vid, int pid, int usb_class, int usb_subclass, int usb_protocol)
-{
- unsigned i;
- for (i = 0; i < vendorIdCount; i++) {
- if (vid == vendorIds[i]) {
- if (usb_class == ADB_CLASS && usb_subclass == ADB_SUBCLASS &&
- usb_protocol == ADB_PROTOCOL) {
- return 1;
- }
-
- return 0;
- }
- }
-
- return 0;
}
-#endif