Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 7/7] event: Store link key infos in new keys file
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1354006193-7199-1-git-send-email-frederic.danis@linux.intel.com>

---
 src/event.c |   59 +++++++++++++++++++++++++++++++++++++++++++++++------------
 1 file changed, 47 insertions(+), 12 deletions(-)

diff --git a/src/event.c b/src/event.c
index 7fc8f02..59da740 100644
--- a/src/event.c
+++ b/src/event.c
@@ -354,33 +354,68 @@ static int store_longtermkey(bdaddr_t *local, bdaddr_t *peer,
 	return err;
 }
 
+static void store_link_key(struct btd_adapter *adapter,
+				struct btd_device *device, uint8_t *key,
+				uint8_t type, uint8_t pin_length)
+{
+	char adapter_addr[18];
+	char device_addr[18];
+	char filename[PATH_MAX + 1];
+	GKeyFile *key_file;
+	char key_str[35];
+	char *str;
+	int i;
+	gsize length = 0;
+
+	ba2str(adapter_get_address(adapter), adapter_addr);
+	ba2str(device_get_address(device), device_addr);
+
+	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/%s/keys", adapter_addr,
+								device_addr);
+	filename[PATH_MAX] = '\0';
+
+	key_file = g_key_file_new();
+	g_key_file_load_from_file(key_file, filename, 0, NULL);
+
+	key_str[0] = '0';
+	key_str[1] = 'x';
+	for (i = 0; i < 16; i++)
+		sprintf(key_str + 2 + (i * 2), "%2.2X", key[i]);
+
+	g_key_file_set_string(key_file, "LinkKey", "Key", key_str);
+
+	g_key_file_set_integer(key_file, "LinkKey", "Type", type);
+	g_key_file_set_integer(key_file, "LinkKey", "PINLength", pin_length);
+
+	create_file(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
+
+	str = g_key_file_to_data(key_file, &length, NULL);
+	g_file_set_contents(filename, str, length, NULL);
+	g_free(str);
+
+	g_key_file_free(key_file);
+}
+
 int btd_event_link_key_notify(bdaddr_t *local, bdaddr_t *peer,
 				uint8_t *key, uint8_t key_type,
 				uint8_t pin_length)
 {
 	struct btd_adapter *adapter;
 	struct btd_device *device;
-	uint8_t peer_type;
-	int ret;
 
 	if (!get_adapter_and_device(local, peer, &adapter, &device, TRUE))
 		return -ENODEV;
 
 	DBG("storing link key of type 0x%02x", key_type);
 
-	peer_type = device_get_addr_type(device);
+	store_link_key(adapter, device, key, key_type, pin_length);
 
-	ret = write_link_key(local, peer, peer_type, key, key_type,
-								pin_length);
+	device_set_bonded(device, TRUE);
 
-	if (ret == 0) {
-		device_set_bonded(device, TRUE);
-
-		if (device_is_temporary(device))
-			device_set_temporary(device, FALSE);
-	}
+	if (device_is_temporary(device))
+		device_set_temporary(device, FALSE);
 
-	return ret;
+	return 0;
 }
 
 int btd_event_ltk_notify(bdaddr_t *local, bdaddr_t *peer, uint8_t bdaddr_type,
-- 
1.7.9.5


^ permalink raw reply related

* [PATCH 6/7] adapter: Upload link keys from new storage
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1354006193-7199-1-git-send-email-frederic.danis@linux.intel.com>

Remove read_link_key() from device_create, this moves to load_devices.
---
 src/adapter.c |  109 +++++++++++++++++++++++++--------------------------------
 src/device.c  |    6 ----
 2 files changed, 48 insertions(+), 67 deletions(-)

diff --git a/src/adapter.c b/src/adapter.c
index 32d3930..d473508 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -1765,31 +1765,35 @@ static int str2buf(const char *str, uint8_t *buf, size_t blen)
 	return 0;
 }
 
-static struct link_key_info *get_key_info(const char *addr, const char *value)
+static struct link_key_info *get_key_info(const char *local,
+						const char *peer)
 {
-	struct link_key_info *info;
-	char tmp[3];
-	long int l;
+	struct link_key_info *info = NULL;
+	char filename[PATH_MAX + 1];
+	GKeyFile *key_file;
+	char *str;
 
-	if (strlen(value) < 36) {
-		error("Unexpectedly short (%zu) link key line", strlen(value));
-		return NULL;
-	}
+	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/%s/keys", local, peer);
 
-	info = g_new0(struct link_key_info, 1);
+	key_file = g_key_file_new();
+	g_key_file_load_from_file(key_file, filename, 0, NULL);
 
-	str2ba(addr, &info->bdaddr);
+	str = g_key_file_get_string(key_file, "LinkKey", "Key", NULL);
+	if (!str || strlen(str) != 34)
+		goto failed;
 
-	str2buf(value, info->key, sizeof(info->key));
+	info = g_new0(struct link_key_info, 1);
+
+	str2ba(peer, &info->bdaddr);
+	str2buf(&str[2], info->key, sizeof(info->key));
 
-	memcpy(tmp, value + 33, 2);
-	info->type = (uint8_t) strtol(tmp, NULL, 10);
+	info->type = g_key_file_get_integer(key_file, "LinkKey", "Type", NULL);
+	info->pin_len = g_key_file_get_integer(key_file, "LinkKey", "PINLength",
+						NULL);
 
-	memcpy(tmp, value + 35, 2);
-	l = strtol(tmp, NULL, 10);
-	if (l < 0)
-		l = 0;
-	info->pin_len = l;
+failed:
+	g_free(str);
+	g_key_file_free(key_file);
 
 	return info;
 }
@@ -1830,34 +1834,6 @@ static struct smp_ltk_info *get_ltk_info(const char *addr, uint8_t bdaddr_type,
 	return ltk;
 }
 
-static void create_stored_device_from_linkkeys(char *key, char *value,
-							void *user_data)
-{
-	char address[18];
-	uint8_t bdaddr_type;
-	struct adapter_keys *keys = user_data;
-	struct btd_adapter *adapter = keys->adapter;
-	struct btd_device *device;
-	struct link_key_info *info;
-
-	if (sscanf(key, "%17s#%hhu", address, &bdaddr_type) < 2)
-		bdaddr_type = BDADDR_BREDR;
-
-	info = get_key_info(address, value);
-	if (info)
-		keys->keys = g_slist_append(keys->keys, info);
-
-	if (g_slist_find_custom(adapter->devices, address,
-					(GCompareFunc) device_address_cmp))
-		return;
-
-	device = device_create(adapter, address, bdaddr_type);
-	if (device) {
-		device_set_temporary(device, FALSE);
-		adapter->devices = g_slist_append(adapter->devices, device);
-	}
-}
-
 static void create_stored_device_from_ltks(char *key, char *value,
 							void *user_data)
 {
@@ -2010,18 +1986,6 @@ static void load_devices(struct btd_adapter *adapter)
 	textfile_foreach(filename, create_stored_device_from_primaries,
 								adapter);
 
-	create_name(filename, PATH_MAX, STORAGEDIR, srcaddr, "linkkeys");
-	textfile_foreach(filename, create_stored_device_from_linkkeys, &keys);
-
-	err = mgmt_load_link_keys(adapter->dev_id, keys.keys,
-							main_opts.debug_keys);
-	if (err < 0)
-		error("Unable to load link keys: %s (%d)",
-							strerror(-err), -err);
-
-	g_slist_free_full(keys.keys, g_free);
-	keys.keys = NULL;
-
 	create_name(filename, PATH_MAX, STORAGEDIR, srcaddr, "longtermkeys");
 	textfile_foreach(filename, create_stored_device_from_ltks, &keys);
 
@@ -2046,13 +2010,22 @@ static void load_devices(struct btd_adapter *adapter)
 
 	while ((entry = readdir(dir)) != NULL) {
 		struct btd_device *device;
+		struct link_key_info *key_info;
+		GSList *l;
 
 		if (entry->d_type != DT_DIR || bachk(entry->d_name) < 0)
 			continue;
 
-		if (g_slist_find_custom(adapter->devices, entry->d_name,
-					(GCompareFunc) device_address_cmp))
-			continue;
+		key_info = get_key_info(srcaddr, entry->d_name);
+		if (key_info)
+			keys.keys = g_slist_append(keys.keys, key_info);
+
+		l = g_slist_find_custom(adapter->devices, entry->d_name,
+					(GCompareFunc) device_address_cmp);
+		if (l) {
+			device = l->data;
+			goto device_exist;
+		}
 
 		device = device_create(adapter, entry->d_name, BDADDR_BREDR);
 		if (!device)
@@ -2060,7 +2033,21 @@ static void load_devices(struct btd_adapter *adapter)
 
 		device_set_temporary(device, FALSE);
 		adapter->devices = g_slist_append(adapter->devices, device);
+
+device_exist:
+		if (key_info) {
+			device_set_paired(device, TRUE);
+			device_set_bonded(device, TRUE);
+		}
 	}
+
+	err = mgmt_load_link_keys(adapter->dev_id, keys.keys,
+							main_opts.debug_keys);
+	if (err < 0)
+		error("Unable to load link keys: %s (%d)",
+							strerror(-err), -err);
+
+	g_slist_free_full(keys.keys, g_free);
 }
 
 int btd_adapter_block_address(struct btd_adapter *adapter,
diff --git a/src/device.c b/src/device.c
index 6b64c5d..d6780ee 100644
--- a/src/device.c
+++ b/src/device.c
@@ -1897,12 +1897,6 @@ struct btd_device *device_create(struct btd_adapter *adapter,
 
 	load_info(device, srcaddr, address);
 
-	if (read_link_key(src, &device->bdaddr, device->bdaddr_type, NULL,
-								NULL) == 0) {
-		device_set_paired(device, TRUE);
-		device_set_bonded(device, TRUE);
-	}
-
 	if (device_is_le(device) && has_longtermkeys(src, &device->bdaddr,
 							device->bdaddr_type)) {
 		device_set_paired(device, TRUE);
-- 
1.7.9.5


^ permalink raw reply related

* [PATCH 5/7] device: Remove keys file in device_remove_stored()
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1354006193-7199-1-git-send-email-frederic.danis@linux.intel.com>

---
 src/device.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/device.c b/src/device.c
index a99ca34..6b64c5d 100644
--- a/src/device.c
+++ b/src/device.c
@@ -2014,6 +2014,11 @@ static void device_remove_stored(struct btd_device *device)
 	filename[PATH_MAX] = '\0';
 	remove(filename);
 
+	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/%s/keys", adapter_addr,
+			device_addr);
+	filename[PATH_MAX] = '\0';
+	remove(filename);
+
 	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/%s", adapter_addr,
 			device_addr);
 	filename[PATH_MAX] = '\0';
-- 
1.7.9.5


^ permalink raw reply related

* [PATCH 4/7] adapter: Convert storage linkkeys file
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1354006193-7199-1-git-send-email-frederic.danis@linux.intel.com>

---
 src/adapter.c |   31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/src/adapter.c b/src/adapter.c
index 9d6554a..32d3930 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -2618,6 +2618,34 @@ static void convert_did_entry(GKeyFile *key_file, void *value)
 	g_key_file_set_integer(key_file, "DeviceID", "Version", val);
 }
 
+static void convert_linkkey_entry(GKeyFile *key_file, void *value)
+{
+	char *type_str, *length_str, *str;
+	gint val;
+
+	type_str = strchr(value, ' ');
+	if (!type_str)
+		return;
+
+	*(type_str++) = 0;
+
+	length_str = strchr(type_str, ' ');
+	if (!length_str)
+		return;
+
+	*(length_str++) = 0;
+
+	str = g_strconcat("0x", value, NULL);
+	g_key_file_set_string(key_file, "LinkKey", "Key", str);
+	g_free(str);
+
+	val = strtol(type_str, NULL, 16);
+	g_key_file_set_integer(key_file, "LinkKey", "Type", val);
+
+	val = strtol(length_str, NULL, 16);
+	g_key_file_set_integer(key_file, "LinkKey", "PINLength", val);
+}
+
 static void convert_entry(char *key, char *value, void *user_data)
 {
 	struct device_converter *converter = user_data;
@@ -2707,6 +2735,9 @@ static void convert_device_storage(struct btd_adapter *adapter)
 
 	/* Convert device ids */
 	convert_file("did", address, "info", convert_did_entry);
+
+	/* Convert linkkeys */
+	convert_file("linkkeys", address, "keys", convert_linkkey_entry);
 }
 
 static void convert_config(struct btd_adapter *adapter, const char *filename,
-- 
1.7.9.5


^ permalink raw reply related

* [PATCH 3/7] adapter: Add destination file to convert_file()
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1354006193-7199-1-git-send-email-frederic.danis@linux.intel.com>

In order to convert keys and longtermkeys, we will need to use
different target file names.
---
 src/adapter.c |   18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/src/adapter.c b/src/adapter.c
index 3f184fc..9d6554a 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -2556,6 +2556,7 @@ static void convert_names_entry(char *key, char *value, void *user_data)
 struct device_converter {
 	char *address;
 	void (*cb)(GKeyFile *key_file, void *value);
+	char *filename;
 };
 
 static void convert_aliases_entry(GKeyFile *key_file, void *value)
@@ -2631,8 +2632,8 @@ static void convert_entry(char *key, char *value, void *user_data)
 	if (bachk(key) != 0)
 		return;
 
-	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/%s/info",
-			converter->address, key);
+	snprintf(filename, PATH_MAX, STORAGEDIR "/%s/%s/%s",
+			converter->address, key, converter->filename);
 	filename[PATH_MAX] = '\0';
 	create_file(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 
@@ -2647,7 +2648,7 @@ static void convert_entry(char *key, char *value, void *user_data)
 	g_key_file_free(key_file);
 }
 
-static void convert_file(char *file, char *address,
+static void convert_file(char *file, char *address, char *dest_file,
 				void (*cb)(GKeyFile *key_file, void *value))
 {
 	char filename[PATH_MAX + 1];
@@ -2663,6 +2664,7 @@ static void convert_file(char *file, char *address,
 	} else {
 		converter.address = address;
 		converter.cb = cb;
+		converter.filename = dest_file;
 
 		textfile_foreach(filename, convert_entry, &converter);
 		textfile_put(filename, "converted", "yes");
@@ -2692,19 +2694,19 @@ static void convert_device_storage(struct btd_adapter *adapter)
 	free(str);
 
 	/* Convert aliases */
-	convert_file("aliases", address, convert_aliases_entry);
+	convert_file("aliases", address, "info", convert_aliases_entry);
 
 	/* Convert trusts */
-	convert_file("trusts", address, convert_trusts_entry);
+	convert_file("trusts", address, "info", convert_trusts_entry);
 
 	/* Convert classes */
-	convert_file("classes", address, convert_classes_entry);
+	convert_file("classes", address, "info", convert_classes_entry);
 
 	/* Convert blocked */
-	convert_file("blocked", address, convert_blocked_entry);
+	convert_file("blocked", address, "info", convert_blocked_entry);
 
 	/* Convert device ids */
-	convert_file("did", address, convert_did_entry);
+	convert_file("did", address, "info", convert_did_entry);
 }
 
 static void convert_config(struct btd_adapter *adapter, const char *filename,
-- 
1.7.9.5


^ permalink raw reply related

* [PATCH 2/7] adapter: Load devices from new storage architecture
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1354006193-7199-1-git-send-email-frederic.danis@linux.intel.com>

---
 src/adapter.c |   30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/src/adapter.c b/src/adapter.c
index 163360f..3f184fc 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -34,6 +34,7 @@
 #include <stdbool.h>
 #include <sys/ioctl.h>
 #include <sys/file.h>
+#include <dirent.h>
 
 #include <bluetooth/bluetooth.h>
 #include <bluetooth/uuid.h>
@@ -1996,6 +1997,8 @@ static void load_devices(struct btd_adapter *adapter)
 	char srcaddr[18];
 	struct adapter_keys keys = { adapter, NULL };
 	int err;
+	DIR *dir;
+	struct dirent *entry;
 
 	ba2str(&adapter->bdaddr, srcaddr);
 
@@ -2031,6 +2034,33 @@ static void load_devices(struct btd_adapter *adapter)
 
 	create_name(filename, PATH_MAX, STORAGEDIR, srcaddr, "blocked");
 	textfile_foreach(filename, create_stored_device_from_blocked, adapter);
+
+	snprintf(filename, PATH_MAX, STORAGEDIR "/%s", srcaddr);
+	filename[PATH_MAX] = '\0';
+
+	dir = opendir(filename);
+	if (!dir) {
+		error("Unable to open adapter storage directory: %s", filename);
+		return;
+	}
+
+	while ((entry = readdir(dir)) != NULL) {
+		struct btd_device *device;
+
+		if (entry->d_type != DT_DIR || bachk(entry->d_name) < 0)
+			continue;
+
+		if (g_slist_find_custom(adapter->devices, entry->d_name,
+					(GCompareFunc) device_address_cmp))
+			continue;
+
+		device = device_create(adapter, entry->d_name, BDADDR_BREDR);
+		if (!device)
+			continue;
+
+		device_set_temporary(device, FALSE);
+		adapter->devices = g_slist_append(adapter->devices, device);
+	}
 }
 
 int btd_adapter_block_address(struct btd_adapter *adapter,
-- 
1.7.9.5


^ permalink raw reply related

* [PATCH 1/7] doc: Update settings-storage.txt
From: Frédéric Danis @ 2012-11-27  8:49 UTC (permalink / raw)
  To: linux-bluetooth

Link key and Long term key for a device should be saved in
keys file under storage device directory
---
 doc/settings-storage.txt |   13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/doc/settings-storage.txt b/doc/settings-storage.txt
index 3fdcb03..c0171e9 100644
--- a/doc/settings-storage.txt
+++ b/doc/settings-storage.txt
@@ -30,6 +30,7 @@ contains:
  - one directory per remote device, named by remote device address, which
    contains:
     - an info file
+    - a keys file
     - an attributes file containing attributes of remote LE services
 
 So the directory structure is:
@@ -42,9 +43,11 @@ So the directory structure is:
             ...
         ./<remote device address>/
             ./info
+            ./keys
             ./attributes
         ./<remote device address>/
             ./info
+            ./keys
             ./attributes
         ...
 
@@ -127,8 +130,8 @@ This general group contains:
 Info file format
 ================
 
-Info file may includes multiple groups (General, Device ID, Link key and
-Long term key) related to a remote device.
+Info file may includes multiple groups (General and Device ID) related to
+a remote device.
 
 [General] group contains:
 
@@ -165,6 +168,12 @@ Long term key) related to a remote device.
   Version		Integer		Device version
 
 
+Keys file format
+================
+
+Keys file may includes multiple groups (Link key and Long term key) related
+to a remote device.
+
 [LinkKey] group contains:
 
   Key			String		Key in hexadecimal format
-- 
1.7.9.5


^ permalink raw reply related

* Re: USB 2.0: No giveback comes for one submitted URB
From: Alan Stern @ 2012-11-26 16:11 UTC (permalink / raw)
  To: naveen yadav
  Cc: linux-kernel, linux-usb, marcel, padovan, linux-bluetooth,
	vivek bhagat
In-Reply-To: <CAJ8eaTxC1EiTwn-KSjW32WKi-4LsVt0YPrTn+xjtYEA9h0Dgdg@mail.gmail.com>

On Mon, 26 Nov 2012, naveen yadav wrote:

> Dear Alan,
> 
> Thanks for your reply ,
> 
> We check on 3.2.34 and 3.6.7 on X86 host machine. and result is same
> without connecting Bluetooth device.
> I am attaching log

Yes, very good.  But you still have to do what I mentioned in my
earlier email:

> On Thu, Nov 22, 2012 at 9:08 PM, Alan Stern <stern@rowland.harvard.edu> wrote:

> > Now you need to find out what other code has changed urb->use_count and
> > fix it.

Alan Stern


^ permalink raw reply

* Re: [PATCH BlueZ 01/11] audio: Remove AudioSink interface
From: Johan Hedberg @ 2012-11-26 14:43 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

Hi Luiz,

On Mon, Nov 26, 2012, Luiz Augusto von Dentz wrote:
> This interface is no longer needed as Device interface can now connect
> the profiles and the state can be tracked using MediaTransport interface.
> ---
>  doc/audio-api.txt     |  53 -------------------
>  profiles/audio/sink.c | 141 ++------------------------------------------------
>  2 files changed, 3 insertions(+), 191 deletions(-)

All patches in this set have been applied. Thanks.

Johan

^ permalink raw reply

* [PATCH BlueZ 11/11] network: Fix invalid read on exit
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

Invalid read of size 1
   at 0x4A09D91: strcmp (mc_replace_strmem.c:729)
   by 0x4C6C768: g_str_equal (in /usr/lib64/libglib-2.0.so.0.3200.4)
   by 0x1446B7: connection_disconnect (connection.c:451)
   by 0x141DEA: disconnect_profile (manager.c:120)
   by 0x4C96C5C: g_slist_foreach (in /usr/lib64/libglib-2.0.so.0.3200.4)
   by 0x182B2D: device_remove (device.c:2034)
   by 0x178809: adapter_remove (adapter.c:2902)
   by 0x173902: manager_cleanup (manager.c:256)
   by 0x1217B9: main (main.c:550)
 Address 0x0 is not stack'd, malloc'd or (recently) free'd

In addition remove owner since it is no longer possible to track the
owner as this is done in the core.
---
 profiles/network/connection.c | 26 --------------------------
 1 file changed, 26 deletions(-)

diff --git a/profiles/network/connection.c b/profiles/network/connection.c
index 912e5b4..a7e45e6 100644
--- a/profiles/network/connection.c
+++ b/profiles/network/connection.c
@@ -70,8 +70,6 @@ struct network_conn {
 	uint16_t	id;		/* Role: Service Class Identifier */
 	conn_state	state;
 	GIOChannel	*io;
-	char		*owner;		/* Connection initiator D-Bus client */
-	guint		watch;		/* Disconnect watch */
 	guint		dc_id;
 	struct network_peer *peer;
 	guint		attempt_cnt;
@@ -124,10 +122,6 @@ static gboolean bnep_watchdog_cb(GIOChannel *chan, GIOCondition cond,
 					NETWORK_PEER_INTERFACE, "UUID");
 	device_remove_disconnect_watch(nc->peer->device, nc->dc_id);
 	nc->dc_id = 0;
-	if (nc->watch) {
-		g_dbus_remove_watch(nc->watch);
-		nc->watch = 0;
-	}
 
 	info("%s disconnected", nc->dev);
 
@@ -146,11 +140,6 @@ static void cancel_connection(struct network_conn *nc, int err)
 		nc->timeout_source = 0;
 	}
 
-	if (nc->watch) {
-		g_dbus_remove_watch(nc->watch);
-		nc->watch = 0;
-	}
-
 	if (nc->cb)
 		nc->cb(nc->peer->device, err, NULL, nc->cb_data);
 
@@ -170,11 +159,6 @@ static void connection_destroy(DBusConnection *conn, void *user_data)
 		bnep_kill_connection(device_get_address(nc->peer->device));
 	} else if (nc->io)
 		cancel_connection(nc, -EIO);
-
-	if (nc->owner) {
-		g_free(nc->owner);
-		nc->owner = NULL;
-	}
 }
 
 static void disconnect_cb(struct btd_device *device, gboolean removal,
@@ -416,16 +400,9 @@ int connection_connect(struct btd_device *device, uint16_t id,
 		return -EIO;
 
 	nc->state = CONNECTING;
-	nc->owner = g_strdup(owner);
 	nc->cb = cb;
 	nc->cb_data = data;
 
-	if (owner)
-		nc->watch = g_dbus_add_disconnect_watch(
-						btd_get_dbus_connection(),
-						owner, connection_destroy,
-						nc, NULL);
-
 	return 0;
 }
 
@@ -446,9 +423,6 @@ int connection_disconnect(struct btd_device *device, uint16_t id,
 	if (nc->state == DISCONNECTED)
 		return 0;
 
-	if (!g_str_equal(nc->owner, caller))
-		return -EPERM;
-
 	connection_destroy(NULL, nc);
 
 	return 0;
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 10/11] network: Fix always attempting to connect to PANU service
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

connection_connect takes the remote role as parameter not the local one.
---
 profiles/network/manager.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/profiles/network/manager.c b/profiles/network/manager.c
index 06abe1b..06ef9fc 100644
--- a/profiles/network/manager.c
+++ b/profiles/network/manager.c
@@ -100,8 +100,7 @@ static int connect_profile(struct btd_device *dev, struct btd_profile *profile,
 	req->profile = profile;
 	req->cb = cb;
 
-	err = connection_connect(dev, BNEP_SVC_PANU, NULL, connect_profile_cb,
-									req);
+	err = connection_connect(dev, id, NULL, connect_profile_cb, req);
 	if (err < 0) {
 		g_free(req);
 		return err;
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 09/11] network: Fix trying to register NetworkServer interface multiple times
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This also removes the limitation of only accepting nap as UUID, now all
PAN UUID are supported including their friendly names.
---
 profiles/network/server.c | 64 ++++++++++++++++++++++++++++++++---------------
 1 file changed, 44 insertions(+), 20 deletions(-)

diff --git a/profiles/network/server.c b/profiles/network/server.c
index 1a485ca..2c3c72e 100644
--- a/profiles/network/server.c
+++ b/profiles/network/server.c
@@ -72,7 +72,6 @@ struct network_adapter {
 /* Main server structure */
 struct network_server {
 	bdaddr_t	src;		/* Bluetooth Local Address */
-	char		*iface;		/* DBus interface */
 	char		*name;		/* Server service name */
 	char		*bridge;	/* Bridge name */
 	uint32_t	record_id;	/* Service record id */
@@ -110,6 +109,22 @@ static struct network_server *find_server(GSList *list, uint16_t id)
 	return NULL;
 }
 
+static struct network_server *find_server_by_uuid(GSList *list,
+							const char *uuid)
+{
+	for (; list; list = list->next) {
+		struct network_server *ns = list->data;
+
+		if (strcasecmp(uuid, bnep_uuid(ns->id)) == 0)
+			return ns;
+
+		if (strcasecmp(uuid, bnep_name(ns->id)) == 0)
+			return ns;
+	}
+
+	return NULL;
+}
+
 static sdp_record_t *server_record_new(const char *name, uint16_t id)
 {
 	sdp_list_t *svclass, *pfseq, *apseq, *root, *aproto;
@@ -624,7 +639,8 @@ static void server_disconnect(DBusConnection *conn, void *user_data)
 static DBusMessage *register_server(DBusConnection *conn,
 				DBusMessage *msg, void *data)
 {
-	struct network_server *ns = data;
+	struct network_adapter *na = data;
+	struct network_server *ns;
 	DBusMessage *reply;
 	const char *uuid, *bridge;
 
@@ -632,7 +648,8 @@ static DBusMessage *register_server(DBusConnection *conn,
 				DBUS_TYPE_STRING, &bridge, DBUS_TYPE_INVALID))
 		return btd_error_invalid_args(msg);
 
-	if (g_strcmp0(uuid, "nap"))
+	ns = find_server_by_uuid(na->servers, uuid);
+	if (ns == NULL)
 		return btd_error_failed(msg, "Invalid UUID");
 
 	if (ns->record_id)
@@ -693,8 +710,10 @@ static void adapter_free(struct network_adapter *na)
 	g_free(na);
 }
 
-static void server_free(struct network_server *ns)
+static void server_free(void *data)
 {
+	struct network_server *ns = data;
+
 	if (!ns)
 		return;
 
@@ -703,7 +722,6 @@ static void server_free(struct network_server *ns)
 	if (ns->record_id)
 		remove_record_from_server(ns->record_id);
 
-	g_free(ns->iface);
 	g_free(ns->name);
 	g_free(ns->bridge);
 
@@ -712,17 +730,12 @@ static void server_free(struct network_server *ns)
 
 static void path_unregister(void *data)
 {
-	struct network_server *ns = data;
-	struct network_adapter *na = ns->na;
+	struct network_adapter *na = data;
 
 	DBG("Unregistered interface %s on path %s",
-		ns->iface, adapter_get_path(na->adapter));
-
-	na->servers = g_slist_remove(na->servers, ns);
-	server_free(ns);
+		NETWORK_SERVER_INTERFACE, adapter_get_path(na->adapter));
 
-	if (na->servers)
-		return;
+	g_slist_free_full(na->servers, server_free);
 
 	adapters = g_slist_remove(adapters, na);
 	adapter_free(na);
@@ -786,29 +799,33 @@ int server_register(struct btd_adapter *adapter, uint16_t id)
 
 	ns = g_new0(struct network_server, 1);
 
-	ns->iface = g_strdup(NETWORK_SERVER_INTERFACE);
 	ns->name = g_strdup("Network service");
 
 	path = adapter_get_path(adapter);
 
+	if (g_slist_length(na->servers) > 0)
+		goto done;
+
 	if (!g_dbus_register_interface(btd_get_dbus_connection(),
-					path, ns->iface,
+					path, NETWORK_SERVER_INTERFACE,
 					server_methods, NULL, NULL,
-					ns, path_unregister)) {
+					na, path_unregister)) {
 		error("D-Bus failed to register %s interface",
-				ns->iface);
+						NETWORK_SERVER_INTERFACE);
 		server_free(ns);
 		return -1;
 	}
 
+	DBG("Registered interface %s on path %s", NETWORK_SERVER_INTERFACE,
+									path);
+
+done:
 	bacpy(&ns->src, adapter_get_address(adapter));
 	ns->id = id;
 	ns->na = na;
 	ns->record_id = 0;
 	na->servers = g_slist_append(na->servers, ns);
 
-	DBG("Registered interface %s on path %s", ns->iface, path);
-
 	return 0;
 }
 
@@ -825,8 +842,15 @@ int server_unregister(struct btd_adapter *adapter, uint16_t id)
 	if (!ns)
 		return -EINVAL;
 
+	na->servers = g_slist_remove(na->servers, ns);
+	server_free(ns);
+
+	if (g_slist_length(na->servers) > 0)
+		return 0;
+
 	g_dbus_unregister_interface(btd_get_dbus_connection(),
-					adapter_get_path(adapter), ns->iface);
+						adapter_get_path(adapter),
+						NETWORK_SERVER_INTERFACE);
 
 	return 0;
 }
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 08/11] network: Fix not responding to Device.ConnectProfile
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

The callback passed to connection_connect has to be used to respond when
the connection completes.
---
 profiles/network/connection.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/network/connection.c b/profiles/network/connection.c
index 231164b..912e5b4 100644
--- a/profiles/network/connection.c
+++ b/profiles/network/connection.c
@@ -417,6 +417,8 @@ int connection_connect(struct btd_device *device, uint16_t id,
 
 	nc->state = CONNECTING;
 	nc->owner = g_strdup(owner);
+	nc->cb = cb;
+	nc->cb_data = data;
 
 	if (owner)
 		nc->watch = g_dbus_add_disconnect_watch(
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 07/11] network: Remove Network.Connect and Network.Disconnect
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

These method are no longer necessary as Device interface has similar
functionality.
---
 doc/network-api.txt           | 36 -------------------
 profiles/network/connection.c | 81 +------------------------------------------
 2 files changed, 1 insertion(+), 116 deletions(-)

diff --git a/doc/network-api.txt b/doc/network-api.txt
index 4dd3e58..b640b9a 100644
--- a/doc/network-api.txt
+++ b/doc/network-api.txt
@@ -11,42 +11,6 @@ Service		org.bluez
 Interface	org.bluez.Network
 Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
 
-Methods		string Connect(string uuid)
-
-			Connect to the network device and return the network
-			interface name. Examples of the interface name are
-			bnep0, bnep1 etc.
-
-			uuid can be either one of "gn", "panu" or "nap" (case
-			insensitive) or a traditional string representation of
-			UUID or a hexadecimal number.
-
-			The connection will be closed and network device
-			released either upon calling Disconnect() or when
-			the client disappears from the message bus.
-
-			Possible errors: org.bluez.Error.AlreadyConnected
-					 org.bluez.Error.ConnectionAttemptFailed
-
-		void Disconnect()
-
-			Disconnect from the network device.
-
-			To abort a connection attempt in case of errors or
-			timeouts in the client it is fine to call this method.
-
-			Possible errors: org.bluez.Error.Failed
-
-		dict GetProperties()
-
-			Returns all properties for the interface. See the
-			properties section for available properties.
-
-Signals		PropertyChanged(string name, variant value)
-
-			This signal indicates a changed value of the given
-			property.
-
 Properties	boolean Connected [readonly]
 
 			Indicates if the device is connected.
diff --git a/profiles/network/connection.c b/profiles/network/connection.c
index d9961f8..231164b 100644
--- a/profiles/network/connection.c
+++ b/profiles/network/connection.c
@@ -378,50 +378,6 @@ failed:
 	cancel_connection(nc, -EIO);
 }
 
-static void local_connect_cb(struct btd_device *device, int err,
-						const char *pdev, void *data)
-{
-	DBusMessage *msg = data;
-	DBusMessage *reply;
-
-	if (err < 0) {
-		reply = btd_error_failed(msg, strerror(-err));
-		g_dbus_send_message(btd_get_dbus_connection(), reply);
-		dbus_message_unref(msg);
-		return;
-	}
-
-	g_dbus_send_reply(btd_get_dbus_connection(), msg,
-						DBUS_TYPE_STRING, &pdev,
-						DBUS_TYPE_INVALID);
-
-	dbus_message_unref(msg);
-}
-
-static DBusMessage *local_connect(DBusConnection *conn,
-						DBusMessage *msg, void *data)
-{
-	struct network_peer *peer = data;
-	const char *svc;
-	uint16_t id;
-	int err;
-
-	if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &svc,
-						DBUS_TYPE_INVALID) == FALSE)
-		return btd_error_invalid_args(msg);
-
-	id = bnep_service_id(svc);
-
-	err = connection_connect(peer->device, id, dbus_message_get_sender(msg),
-							local_connect_cb, msg);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	dbus_message_ref(msg);
-
-	return NULL;
-}
-
 /* Connect and initiate BNEP session */
 int connection_connect(struct btd_device *device, uint16_t id,
 					const char *owner,
@@ -496,30 +452,6 @@ int connection_disconnect(struct btd_device *device, uint16_t id,
 	return 0;
 }
 
-static DBusMessage *local_disconnect(DBusConnection *conn,
-					DBusMessage *msg, void *data)
-{
-	struct network_peer *peer = data;
-	const char *caller = dbus_message_get_sender(msg);
-	GSList *l;
-
-	for (l = peer->connections; l; l = l->next) {
-		struct network_conn *nc = l->data;
-		int err;
-
-		if (nc->state == DISCONNECTED)
-			continue;
-
-		err = connection_disconnect(peer->device, nc->id, caller);
-		if (err < 0)
-			return btd_error_failed(msg, strerror(-err));
-
-		return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
-	}
-
-	return btd_error_not_connected(msg);
-}
-
 static gboolean
 network_property_get_connected(const GDBusPropertyTable *property,
 					DBusMessageIter *iter, void *data)
@@ -616,16 +548,6 @@ static void path_unregister(void *data)
 	peer_free(peer);
 }
 
-static const GDBusMethodTable connection_methods[] = {
-	{ GDBUS_ASYNC_METHOD("Connect",
-				GDBUS_ARGS({"uuid", "s"}),
-				GDBUS_ARGS({"interface", "s"}),
-				local_connect) },
-	{ GDBUS_METHOD("Disconnect",
-			NULL, NULL, local_disconnect) },
-	{ }
-};
-
 static const GDBusPropertyTable connection_properties[] = {
 	{ "Connected", "b", network_property_get_connected },
 	{ "Interface", "s", network_property_get_interface },
@@ -661,8 +583,7 @@ static struct network_peer *create_peer(struct btd_device *device)
 
 	if (g_dbus_register_interface(btd_get_dbus_connection(), path,
 					NETWORK_PEER_INTERFACE,
-					connection_methods,
-					NULL, connection_properties,
+					NULL, NULL, connection_properties,
 					peer, path_unregister) == FALSE) {
 		error("D-Bus failed to register %s interface",
 			NETWORK_PEER_INTERFACE);
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 06/11] network: Make use of D-Bus Properties interface
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

---
 profiles/network/connection.c | 133 +++++++++++++++++++++---------------------
 1 file changed, 68 insertions(+), 65 deletions(-)

diff --git a/profiles/network/connection.c b/profiles/network/connection.c
index 57451b9..d9961f8 100644
--- a/profiles/network/connection.c
+++ b/profiles/network/connection.c
@@ -113,19 +113,15 @@ static gboolean bnep_watchdog_cb(GIOChannel *chan, GIOCondition cond,
 				gpointer data)
 {
 	struct network_conn *nc = data;
-	gboolean connected = FALSE;
-	const char *property = "";
+	DBusConnection *conn = btd_get_dbus_connection();
 	const char *path = device_get_path(nc->peer->device);
 
-	emit_property_changed(path,
-				NETWORK_PEER_INTERFACE, "Connected",
-				DBUS_TYPE_BOOLEAN, &connected);
-	emit_property_changed(path,
-				NETWORK_PEER_INTERFACE, "Interface",
-				DBUS_TYPE_STRING, &property);
-	emit_property_changed(path,
-				NETWORK_PEER_INTERFACE, "UUID",
-				DBUS_TYPE_STRING, &property);
+	g_dbus_emit_property_changed(conn, path,
+					NETWORK_PEER_INTERFACE, "Connected");
+	g_dbus_emit_property_changed(conn, path,
+					NETWORK_PEER_INTERFACE, "Interface");
+	g_dbus_emit_property_changed(conn, path,
+					NETWORK_PEER_INTERFACE, "UUID");
 	device_remove_disconnect_watch(nc->peer->device, nc->dc_id);
 	nc->dc_id = 0;
 	if (nc->watch) {
@@ -200,9 +196,8 @@ static gboolean bnep_setup_cb(GIOChannel *chan, GIOCondition cond,
 	char pkt[BNEP_MTU];
 	ssize_t r;
 	int sk;
-	const char *pdev, *uuid;
-	gboolean connected;
 	const char *path;
+	DBusConnection *conn;
 
 	if (cond & G_IO_NVAL)
 		return FALSE;
@@ -265,24 +260,19 @@ static gboolean bnep_setup_cb(GIOChannel *chan, GIOCondition cond,
 	}
 
 	bnep_if_up(nc->dev);
-	pdev = nc->dev;
-	uuid = bnep_uuid(nc->id);
 
 	if (nc->cb)
-		nc->cb(nc->peer->device, 0, pdev, nc->cb_data);
+		nc->cb(nc->peer->device, 0, nc->dev, nc->cb_data);
 
+	conn = btd_get_dbus_connection();
 	path = device_get_path(nc->peer->device);
 
-	connected = TRUE;
-	emit_property_changed(path,
-				NETWORK_PEER_INTERFACE, "Connected",
-				DBUS_TYPE_BOOLEAN, &connected);
-	emit_property_changed(path,
-				NETWORK_PEER_INTERFACE, "Interface",
-				DBUS_TYPE_STRING, &pdev);
-	emit_property_changed(path,
-				NETWORK_PEER_INTERFACE, "UUID",
-				DBUS_TYPE_STRING, &uuid);
+	g_dbus_emit_property_changed(conn, path,
+					NETWORK_PEER_INTERFACE, "Connected");
+	g_dbus_emit_property_changed(conn, path,
+					NETWORK_PEER_INTERFACE, "Interface");
+	g_dbus_emit_property_changed(conn, path,
+					NETWORK_PEER_INTERFACE, "UUID");
 
 	nc->state = CONNECTED;
 	nc->dc_id = device_add_disconnect_watch(nc->peer->device, disconnect_cb,
@@ -530,54 +520,69 @@ static DBusMessage *local_disconnect(DBusConnection *conn,
 	return btd_error_not_connected(msg);
 }
 
-static DBusMessage *local_get_properties(DBusConnection *conn,
-					DBusMessage *msg, void *data)
+static gboolean
+network_property_get_connected(const GDBusPropertyTable *property,
+					DBusMessageIter *iter, void *data)
 {
 	struct network_peer *peer = data;
-	struct network_conn *nc = NULL;
-	DBusMessage *reply;
-	DBusMessageIter iter;
-	DBusMessageIter dict;
-	dbus_bool_t connected;
-	const char *property;
+	dbus_bool_t value = FALSE;
 	GSList *l;
 
-	reply = dbus_message_new_method_return(msg);
-	if (!reply)
-		return NULL;
+	for (l = peer->connections; l; l = l->next) {
+		struct network_conn *tmp = l->data;
+
+		if (tmp->state == CONNECTED) {
+			value = TRUE;
+			break;
+		}
+	}
+
+	dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
 
-	dbus_message_iter_init_append(reply, &iter);
+	return TRUE;
+}
 
-	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
+static gboolean
+network_property_get_interface(const GDBusPropertyTable *property,
+					DBusMessageIter *iter, void *data)
+{
+	struct network_peer *peer = data;
+	const char *value = "";
+	GSList *l;
 
-	/* Connected */
 	for (l = peer->connections; l; l = l->next) {
 		struct network_conn *tmp = l->data;
 
-		if (tmp->state != CONNECTED)
-			continue;
-
-		nc = tmp;
-		break;
+		if (tmp->state == CONNECTED) {
+			value = tmp->dev;
+			break;
+		}
 	}
 
-	connected = nc ? TRUE : FALSE;
-	dict_append_entry(&dict, "Connected", DBUS_TYPE_BOOLEAN, &connected);
+	dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &value);
 
-	/* Interface */
-	property = nc ? nc->dev : "";
-	dict_append_entry(&dict, "Interface", DBUS_TYPE_STRING, &property);
+	return TRUE;
+}
 
-	/* UUID */
-	property = nc ? bnep_uuid(nc->id) : "";
-	dict_append_entry(&dict, "UUID", DBUS_TYPE_STRING, &property);
+static gboolean network_property_get_uuid(const GDBusPropertyTable *property,
+					DBusMessageIter *iter, void *data)
+{
+	struct network_peer *peer = data;
+	const char *value = "";
+	GSList *l;
+
+	for (l = peer->connections; l; l = l->next) {
+		struct network_conn *tmp = l->data;
+
+		if (tmp->state == CONNECTED) {
+			value = bnep_uuid(tmp->id);
+			break;
+		}
+	}
 
-	dbus_message_iter_close_container(&iter, &dict);
+	dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &value);
 
-	return reply;
+	return TRUE;
 }
 
 static void connection_free(void *data)
@@ -618,15 +623,13 @@ static const GDBusMethodTable connection_methods[] = {
 				local_connect) },
 	{ GDBUS_METHOD("Disconnect",
 			NULL, NULL, local_disconnect) },
-	{ GDBUS_METHOD("GetProperties",
-			NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
-			local_get_properties) },
 	{ }
 };
 
-static const GDBusSignalTable connection_signals[] = {
-	{ GDBUS_SIGNAL("PropertyChanged",
-			GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
+static const GDBusPropertyTable connection_properties[] = {
+	{ "Connected", "b", network_property_get_connected },
+	{ "Interface", "s", network_property_get_interface },
+	{ "UUID", "s", network_property_get_uuid },
 	{ }
 };
 
@@ -659,7 +662,7 @@ static struct network_peer *create_peer(struct btd_device *device)
 	if (g_dbus_register_interface(btd_get_dbus_connection(), path,
 					NETWORK_PEER_INTERFACE,
 					connection_methods,
-					connection_signals, NULL,
+					NULL, connection_properties,
 					peer, path_unregister) == FALSE) {
 		error("D-Bus failed to register %s interface",
 			NETWORK_PEER_INTERFACE);
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 05/11] input: Remove Input interface
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This interface is no longer needed as Device interface can now connect
the profiles.
---
 doc/input-api.txt       | 44 -----------------------
 profiles/input/device.c | 93 ++++---------------------------------------------
 2 files changed, 6 insertions(+), 131 deletions(-)
 delete mode 100644 doc/input-api.txt

diff --git a/doc/input-api.txt b/doc/input-api.txt
deleted file mode 100644
index 7c3a4b2..0000000
--- a/doc/input-api.txt
+++ /dev/null
@@ -1,44 +0,0 @@
-BlueZ D-Bus Input API description
-*********************************
-
-Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
-
-
-Input hierarchy
-===============
-
-Service		org.bluez
-Interface	org.bluez.Input
-Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
-
-Methods		void Connect()
-
-			Connect to the input device.
-
-			Possible errors: org.bluez.Error.AlreadyConnected
-					 org.bluez.Error.ConnectionAttemptFailed
-
-		void Disconnect()
-
-			Disconnect from the input device.
-
-			To abort a connection attempt in case of errors or
-			timeouts in the client it is fine to call this method.
-
-			Possible errors: org.bluez.Error.Failed
-
-		dict GetProperties()
-
-			Returns all properties for the interface. See the
-			properties section for available properties.
-
-			Possible Errors: org.bluez.Error.InvalidArguments
-
-Signals		PropertyChanged(string name, variant value)
-
-			This signal indicates a changed value of the given
-			property.
-
-Properties	boolean Connected [readonly]
-
-			Indicates if the device is connected.
diff --git a/profiles/input/device.c b/profiles/input/device.c
index 108be39..2871cc3 100644
--- a/profiles/input/device.c
+++ b/profiles/input/device.c
@@ -680,26 +680,6 @@ int input_device_connect(struct btd_device *dev, struct btd_profile *profile,
 	return dev_connect(idev);
 }
 
-static DBusMessage *local_connect(DBusConnection *conn, DBusMessage *msg,
-								void *data)
-{
-	struct input_device *idev = data;
-
-	if (idev->pending)
-		return btd_error_in_progress(msg);
-
-	if (is_connected(idev))
-		return btd_error_already_connected(msg);
-
-	idev->pending = g_new0(struct pending_connect, 1);
-	idev->pending->local = true;
-	idev->pending->msg = dbus_message_ref(msg);
-
-	dev_connect(idev);
-
-	return NULL;
-}
-
 int input_device_disconnect(struct btd_device *dev, struct btd_profile *profile,
 							btd_profile_cb cb)
 {
@@ -720,57 +700,6 @@ int input_device_disconnect(struct btd_device *dev, struct btd_profile *profile,
 	return 0;
 }
 
-static DBusMessage *local_disconnect(DBusConnection *conn,
-						DBusMessage *msg, void *data)
-{
-	struct input_device *idev = data;
-	int err;
-
-	err = connection_disconnect(idev, 0);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	return g_dbus_create_reply(msg, DBUS_TYPE_INVALID);
-}
-
-static void device_unregister(void *data)
-{
-	struct input_device *idev = data;
-
-	DBG("Unregistered interface %s on path %s", INPUT_DEVICE_INTERFACE,
-								idev->path);
-
-	devices = g_slist_remove(devices, idev);
-	input_device_free(idev);
-}
-
-
-
-static gboolean input_device_property_get_connected(
-					const GDBusPropertyTable *property,
-					DBusMessageIter *iter, void *data)
-{
-	struct input_device *idev = data;
-	dbus_bool_t connected = is_connected(idev);
-
-	dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &connected);
-
-	return TRUE;
-}
-
-static const GDBusMethodTable device_methods[] = {
-	{ GDBUS_ASYNC_METHOD("Connect",
-				NULL, NULL, local_connect) },
-	{ GDBUS_METHOD("Disconnect",
-				NULL, NULL, local_disconnect) },
-	{ }
-};
-
-static const GDBusPropertyTable device_properties[] = {
-	{ "Connected", "b", input_device_property_get_connected },
-	{ }
-};
-
 static struct input_device *input_device_new(struct btd_device *device,
 				const char *path, const uint32_t handle,
 				gboolean disable_sdp)
@@ -791,20 +720,6 @@ static struct input_device *input_device_new(struct btd_device *device,
 	if (strlen(name) > 0)
 		idev->name = g_strdup(name);
 
-	if (g_dbus_register_interface(btd_get_dbus_connection(),
-					idev->path, INPUT_DEVICE_INTERFACE,
-					device_methods, NULL,
-					device_properties, idev,
-					device_unregister) == FALSE) {
-		error("Failed to register interface %s on path %s",
-			INPUT_DEVICE_INTERFACE, path);
-		input_device_free(idev);
-		return NULL;
-	}
-
-	DBG("Registered interface %s on path %s",
-			INPUT_DEVICE_INTERFACE, idev->path);
-
 	return idev;
 }
 
@@ -823,6 +738,8 @@ int input_device_register(struct btd_device *device,
 {
 	struct input_device *idev;
 
+	DBG("%s", path);
+
 	idev = find_device_by_path(devices, path);
 	if (idev)
 		return -EEXIST;
@@ -859,6 +776,8 @@ int input_device_unregister(const char *path, const char *uuid)
 {
 	struct input_device *idev;
 
+	DBG("%s", path);
+
 	idev = find_device_by_path(devices, path);
 	if (idev == NULL)
 		return -EINVAL;
@@ -868,8 +787,8 @@ int input_device_unregister(const char *path, const char *uuid)
 		return -EBUSY;
 	}
 
-	g_dbus_unregister_interface(btd_get_dbus_connection(),
-						path, INPUT_DEVICE_INTERFACE);
+	devices = g_slist_remove(devices, idev);
+	input_device_free(idev);
 
 	return 0;
 }
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 04/11] audio: Remove Control.Connect and Control.Disconnect
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

These method are no longer necessary as Device interface has similar
functionality.
---
 doc/control-api.txt      | 10 +---------
 profiles/audio/control.c | 47 -----------------------------------------------
 profiles/audio/device.c  |  6 ++++--
 3 files changed, 5 insertions(+), 58 deletions(-)

diff --git a/doc/control-api.txt b/doc/control-api.txt
index 0d25512..a16ee7d 100644
--- a/doc/control-api.txt
+++ b/doc/control-api.txt
@@ -12,15 +12,7 @@ Service		org.bluez
 Interface	org.bluez.Control
 Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
 
-Methods		void Connect()
-
-			Connect to remote device.
-
-		void Disconnect()
-
-			Disconnect from remote device.
-
-		void Play()
+Methods		void Play()
 
 			Resume playback.
 
diff --git a/profiles/audio/control.c b/profiles/audio/control.c
index 29cf3bb..0013f8d 100644
--- a/profiles/audio/control.c
+++ b/profiles/audio/control.c
@@ -153,38 +153,6 @@ int control_connect(struct audio_device *dev, audio_device_cb cb, void *data)
 	return 0;
 }
 
-static void generic_cb(struct audio_device *dev, int err, void *data)
-{
-	DBusMessage *msg = data;
-	DBusMessage *reply;
-
-	if (err < 0) {
-		reply = btd_error_failed(msg, strerror(-err));
-		g_dbus_send_message(btd_get_dbus_connection(), reply);
-		dbus_message_unref(msg);
-		return;
-	}
-
-	g_dbus_send_reply(btd_get_dbus_connection(), msg, DBUS_TYPE_INVALID);
-
-	dbus_message_unref(msg);
-}
-
-static DBusMessage *connect_control(DBusConnection *conn, DBusMessage *msg,
-								void *data)
-{
-	struct audio_device *device = data;
-	int err;
-
-	err = control_connect(device, generic_cb, msg);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	dbus_message_ref(msg);
-
-	return NULL;
-}
-
 int control_disconnect(struct audio_device *dev, audio_device_cb cb,
 								void *data)
 {
@@ -208,19 +176,6 @@ int control_disconnect(struct audio_device *dev, audio_device_cb cb,
 
 }
 
-static DBusMessage *disconnect_control(DBusConnection *conn, DBusMessage *msg,
-								void *data)
-{
-	struct audio_device *device = data;
-	int err;
-
-	err = control_disconnect(device, NULL, NULL);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	return dbus_message_new_method_return(msg);
-}
-
 static DBusMessage *key_pressed(DBusConnection *conn, DBusMessage *msg,
 						uint8_t op, void *data)
 {
@@ -296,8 +251,6 @@ static gboolean control_property_get_connected(
 }
 
 static const GDBusMethodTable control_methods[] = {
-	{ GDBUS_ASYNC_METHOD("Connect", NULL, NULL, connect_control) },
-	{ GDBUS_METHOD("Disconnect", NULL, NULL, disconnect_control) },
 	{ GDBUS_METHOD("Play", NULL, NULL, control_play) },
 	{ GDBUS_METHOD("Pause", NULL, NULL, control_pause) },
 	{ GDBUS_METHOD("Stop", NULL, NULL, control_stop) },
diff --git a/profiles/audio/device.c b/profiles/audio/device.c
index b14f75b..fef2bea 100644
--- a/profiles/audio/device.c
+++ b/profiles/audio/device.c
@@ -298,6 +298,8 @@ struct audio_device *audio_device_register(struct btd_device *device,
 {
 	struct audio_device *dev;
 
+	DBG("%s", device_get_path(device));
+
 	dev = g_new0(struct audio_device, 1);
 
 	dev->btd_dev = btd_device_ref(device);
@@ -306,8 +308,6 @@ struct audio_device *audio_device_register(struct btd_device *device,
 	dev->priv = g_new0(struct dev_priv, 1);
 	dev->priv->state = AUDIO_STATE_DISCONNECTED;
 
-	DBG("%s", device_get_path(dev->btd_dev));
-
 	if (sink_callback_id == 0)
 		sink_callback_id = sink_add_state_cb(device_sink_cb, NULL);
 
@@ -341,6 +341,8 @@ gboolean audio_device_is_active(struct audio_device *dev,
 
 void audio_device_unregister(struct audio_device *device)
 {
+	DBG("%s", device_get_path(device->btd_dev));
+
 	if (device->hs_preauth_id) {
 		g_source_remove(device->hs_preauth_id);
 		device->hs_preauth_id = 0;
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 03/11] audio: Remove Audio interface
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This interface is no longer needed as Device interface can now connect
the profiles and the state can be tracked using MediaTransport interface.
---
 doc/audio-api.txt       |  51 ---------------
 profiles/audio/device.c | 160 +-----------------------------------------------
 2 files changed, 2 insertions(+), 209 deletions(-)
 delete mode 100644 doc/audio-api.txt

diff --git a/doc/audio-api.txt b/doc/audio-api.txt
deleted file mode 100644
index 6fd8dfc..0000000
--- a/doc/audio-api.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-BlueZ D-Bus Audio API description
-*********************************
-
-Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
-Copyright (C) 2005-2007  Johan Hedberg <johan.hedberg@nokia.com>
-Copyright (C) 2005-2006  Brad Midgley <bmidgley@xmission.com>
-
-Audio hierarchy
-===============
-
-Service		org.bluez
-Interface	org.bluez.Audio
-Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
-
-This is a generic audio interface that abstracts the different audio profiles.
-
-Methods		void Connect()
-
-			Connect all supported audio profiles on the device.
-
-		void Disconnect()
-
-			Disconnect all audio profiles on the device
-
-		dict GetProperties()
-
-			Returns all properties for the interface. See the
-			properties section for available properties.
-
-Signals		void PropertyChanged(string name, variant value)
-
-			This signal indicates a changed value of the given
-			property.
-
-Properties	string State
-
-			Possible values: "disconnected", "connecting",
-			"connected"
-
-			"disconnected" -> "connecting"
-				Either an incoming or outgoing connection
-				attempt ongoing.
-
-			"connecting" -> "disconnected"
-				Connection attempt failed
-
-			"connecting" -> "connected"
-				Successfully connected
-
-			"connected" -> "disconnected"
-				Disconnected from the remote device
diff --git a/profiles/audio/device.c b/profiles/audio/device.c
index 4cce6ba..b14f75b 100644
--- a/profiles/audio/device.c
+++ b/profiles/audio/device.c
@@ -74,9 +74,6 @@ struct dev_priv {
 	sink_state_t sink_state;
 	avctp_state_t avctp_state;
 
-	DBusMessage *conn_req;
-	DBusMessage *dc_req;
-
 	guint control_timer;
 	guint avdtp_timer;
 	guint dc_id;
@@ -97,10 +94,6 @@ static void device_free(struct audio_device *dev)
 			g_source_remove(priv->control_timer);
 		if (priv->avdtp_timer)
 			g_source_remove(priv->avdtp_timer);
-		if (priv->dc_req)
-			dbus_message_unref(priv->dc_req);
-		if (priv->conn_req)
-			dbus_message_unref(priv->conn_req);
 		if (priv->dc_id)
 			device_remove_disconnect_watch(dev->btd_dev,
 							priv->dc_id);
@@ -198,10 +191,8 @@ static void disconnect_cb(struct btd_device *btd_dev, gboolean removal,
 
 static void device_set_state(struct audio_device *dev, audio_state_t new_state)
 {
-	DBusConnection *conn = btd_get_dbus_connection();
 	struct dev_priv *priv = dev->priv;
 	const char *state_str;
-	DBusMessage *reply = NULL;
 
 	state_str = state2str(new_state);
 	if (!state_str)
@@ -225,31 +216,8 @@ static void device_set_state(struct audio_device *dev, audio_state_t new_state)
 
 	dev->priv->state = new_state;
 
-	if (new_state == AUDIO_STATE_DISCONNECTED) {
-		if (priv->dc_req) {
-			reply = dbus_message_new_method_return(priv->dc_req);
-			dbus_message_unref(priv->dc_req);
-			priv->dc_req = NULL;
-			g_dbus_send_message(conn, reply);
-		}
+	if (new_state == AUDIO_STATE_DISCONNECTED)
 		priv->disconnecting = FALSE;
-	}
-
-	if (priv->conn_req && new_state != AUDIO_STATE_CONNECTING) {
-		if (new_state == AUDIO_STATE_CONNECTED)
-			reply = dbus_message_new_method_return(priv->conn_req);
-		else
-			reply = btd_error_failed(priv->conn_req,
-							"Connect Failed");
-
-		dbus_message_unref(priv->conn_req);
-		priv->conn_req = NULL;
-		g_dbus_send_message(conn, reply);
-	}
-
-	emit_property_changed(device_get_path(dev->btd_dev),
-				AUDIO_INTERFACE, "State",
-				DBUS_TYPE_STRING, &state_str);
 }
 
 static void device_avdtp_cb(struct audio_device *dev, struct avdtp *session,
@@ -324,115 +292,6 @@ static void device_avctp_cb(struct audio_device *dev,
 	}
 }
 
-static DBusMessage *dev_connect(DBusConnection *conn, DBusMessage *msg,
-								void *data)
-{
-	struct audio_device *dev = data;
-	struct dev_priv *priv = dev->priv;
-
-	if (priv->state == AUDIO_STATE_CONNECTING)
-		return btd_error_in_progress(msg);
-	else if (priv->state == AUDIO_STATE_CONNECTED)
-		return btd_error_already_connected(msg);
-
-	dev->auto_connect = TRUE;
-
-	if (priv->state != AUDIO_STATE_CONNECTING && dev->sink) {
-		struct avdtp *session = avdtp_get(&dev->src, &dev->dst);
-
-		if (!session)
-			return btd_error_failed(msg,
-					"Failed to get AVDTP session");
-
-		sink_setup_stream(dev->sink, session);
-		avdtp_unref(session);
-	}
-
-	/* The previous calls should cause a call to the state callback to
-	 * indicate AUDIO_STATE_CONNECTING */
-	if (priv->state != AUDIO_STATE_CONNECTING)
-		return btd_error_failed(msg, "Connect Failed");
-
-	priv->conn_req = dbus_message_ref(msg);
-
-	return NULL;
-}
-
-static DBusMessage *dev_disconnect(DBusConnection *conn, DBusMessage *msg,
-								void *data)
-{
-	struct audio_device *dev = data;
-	struct dev_priv *priv = dev->priv;
-
-	if (priv->state == AUDIO_STATE_DISCONNECTED)
-		return btd_error_not_connected(msg);
-
-	if (priv->dc_req)
-		return dbus_message_new_method_return(msg);
-
-	priv->dc_req = dbus_message_ref(msg);
-
-	if (dev->control) {
-		device_remove_control_timer(dev);
-		avrcp_disconnect(dev);
-	}
-
-	if (dev->sink && priv->sink_state != SINK_STATE_DISCONNECTED)
-		sink_disconnect(dev, TRUE, NULL, NULL);
-	else {
-		dbus_message_unref(priv->dc_req);
-		priv->dc_req = NULL;
-		return dbus_message_new_method_return(msg);
-	}
-
-	return NULL;
-}
-
-static DBusMessage *dev_get_properties(DBusConnection *conn, DBusMessage *msg,
-								void *data)
-{
-	struct audio_device *device = data;
-	DBusMessage *reply;
-	DBusMessageIter iter;
-	DBusMessageIter dict;
-	const char *state;
-
-	reply = dbus_message_new_method_return(msg);
-	if (!reply)
-		return NULL;
-
-	dbus_message_iter_init_append(reply, &iter);
-
-	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
-
-	/* State */
-	state = state2str(device->priv->state);
-	if (state)
-		dict_append_entry(&dict, "State", DBUS_TYPE_STRING, &state);
-
-	dbus_message_iter_close_container(&iter, &dict);
-
-	return reply;
-}
-
-static const GDBusMethodTable dev_methods[] = {
-	{ GDBUS_ASYNC_METHOD("Connect", NULL, NULL, dev_connect) },
-	{ GDBUS_METHOD("Disconnect", NULL, NULL, dev_disconnect) },
-	{ GDBUS_METHOD("GetProperties",
-		NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
-		dev_get_properties) },
-	{ }
-};
-
-static const GDBusSignalTable dev_signals[] = {
-	{ GDBUS_SIGNAL("PropertyChanged",
-			GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
-	{ }
-};
-
 struct audio_device *audio_device_register(struct btd_device *device,
 							const bdaddr_t *src,
 							const bdaddr_t *dst)
@@ -447,18 +306,7 @@ struct audio_device *audio_device_register(struct btd_device *device,
 	dev->priv = g_new0(struct dev_priv, 1);
 	dev->priv->state = AUDIO_STATE_DISCONNECTED;
 
-	if (!g_dbus_register_interface(btd_get_dbus_connection(),
-					device_get_path(dev->btd_dev),
-					AUDIO_INTERFACE, dev_methods,
-					dev_signals, NULL, dev, NULL)) {
-		error("Unable to register %s on %s", AUDIO_INTERFACE,
-						device_get_path(dev->btd_dev));
-		device_free(dev);
-		return NULL;
-	}
-
-	DBG("Registered interface %s on path %s", AUDIO_INTERFACE,
-						device_get_path(dev->btd_dev));
+	DBG("%s", device_get_path(dev->btd_dev));
 
 	if (sink_callback_id == 0)
 		sink_callback_id = sink_add_state_cb(device_sink_cb, NULL);
@@ -507,9 +355,5 @@ void audio_device_unregister(struct audio_device *device)
 	if (device->control)
 		control_unregister(device);
 
-	g_dbus_unregister_interface(btd_get_dbus_connection(),
-					device_get_path(device->btd_dev),
-					AUDIO_INTERFACE);
-
 	device_free(device);
 }
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 02/11] audio: Remove AudioSource interface
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth
In-Reply-To: <1353935362-8666-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This interface is no longer needed as Device interface can now connect
the profiles and the state can be tracked using MediaTransport interface.
---
 doc/audio-api.txt       |  54 ------------------
 profiles/audio/source.c | 146 ++++--------------------------------------------
 2 files changed, 11 insertions(+), 189 deletions(-)

diff --git a/doc/audio-api.txt b/doc/audio-api.txt
index 47ea4b6..6fd8dfc 100644
--- a/doc/audio-api.txt
+++ b/doc/audio-api.txt
@@ -49,57 +49,3 @@ Properties	string State
 
 			"connected" -> "disconnected"
 				Disconnected from the remote device
-
-
-AudioSource hierarchy
-=====================
-
-Service		org.bluez
-Interface	org.bluez.AudioSource
-Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
-
-Methods		void Connect()
-
-			Connect and setup a stream to a A2DP source on the
-			remote device.
-
-		void Disconnect()
-
-			Disconnect from the remote device.
-
-		dict GetProperties()
-
-			Returns all properties for the interface. See the
-			properties section for available properties.
-
-			Possible Errors: org.bluez.Error.InvalidArguments
-
-Signals		PropertyChanged(string name, variant value)
-
-			This signal indicates a changed value of the given
-			property.
-
-properties	string State [readonly]
-
-			Possible values: "disconnected", "connecting",
-			"connected", "playing"
-
-			"disconnected" -> "connecting"
-				Either an incoming or outgoing connection
-				attempt ongoing.
-
-			"connecting" -> "disconnected"
-				Connection attempt failed
-
-			"connecting" -> "connected"
-				Successfully connected
-
-			"connected" -> "playing"
-				Audio stream active
-
-			"playing" -> "connected"
-				Audio stream suspended
-
-			"connected" -> "disconnected"
-			"playing" -> "disconnected"
-				Disconnected from the remote device
diff --git a/profiles/audio/source.c b/profiles/audio/source.c
index 902b4d4..157a4e8 100644
--- a/profiles/audio/source.c
+++ b/profiles/audio/source.c
@@ -81,37 +81,23 @@ static GSList *source_callbacks = NULL;
 
 static unsigned int avdtp_callback_id = 0;
 
-static const char *state2str(source_state_t state)
-{
-	switch (state) {
-	case SOURCE_STATE_DISCONNECTED:
-		return "disconnected";
-	case SOURCE_STATE_CONNECTING:
-		return "connecting";
-	case SOURCE_STATE_CONNECTED:
-		return "connected";
-	case SOURCE_STATE_PLAYING:
-		return "playing";
-	default:
-		error("Invalid source state %d", state);
-		return NULL;
-	}
-}
+static char *str_state[] = {
+	"SOURCE_STATE_DISCONNECTED",
+	"SOURCE_STATE_CONNECTING",
+	"SOURCE_STATE_CONNECTED",
+	"SOURCE_STATE_PLAYING",
+};
 
 static void source_set_state(struct audio_device *dev, source_state_t new_state)
 {
 	struct source *source = dev->source;
-	const char *state_str;
 	source_state_t old_state = source->state;
 	GSList *l;
 
 	source->state = new_state;
 
-	state_str = state2str(new_state);
-	if (state_str)
-		emit_property_changed(device_get_path(dev->btd_dev),
-					AUDIO_SOURCE_INTERFACE, "State",
-					DBUS_TYPE_STRING, &state_str);
+	DBG("State changed %s: %s -> %s", device_get_path(dev->btd_dev),
+				str_state[old_state], str_state[new_state]);
 
 	for (l = source_callbacks; l != NULL; l = l->next) {
 		struct source_state_callback *cb = l->data;
@@ -356,38 +342,6 @@ gboolean source_setup_stream(struct source *source, struct avdtp *session)
 	return TRUE;
 }
 
-static void generic_cb(struct audio_device *dev, int err, void *data)
-{
-	DBusMessage *msg = data;
-	DBusMessage *reply;
-
-	if (err < 0) {
-		reply = btd_error_failed(msg, strerror(-err));
-		g_dbus_send_message(btd_get_dbus_connection(), reply);
-		dbus_message_unref(msg);
-		return;
-	}
-
-	g_dbus_send_reply(btd_get_dbus_connection(), msg, DBUS_TYPE_INVALID);
-
-	dbus_message_unref(msg);
-}
-
-static DBusMessage *connect_source(DBusConnection *conn,
-				DBusMessage *msg, void *data)
-{
-	struct audio_device *dev = data;
-	int err;
-
-	err = source_connect(dev, generic_cb, msg);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	dbus_message_ref(msg);
-
-	return NULL;
-}
-
 int source_connect(struct audio_device *dev, audio_device_cb cb, void *data)
 {
 	struct source *source = dev->source;
@@ -423,67 +377,6 @@ int source_connect(struct audio_device *dev, audio_device_cb cb, void *data)
 	return 0;
 }
 
-static DBusMessage *disconnect_source(DBusConnection *conn,
-					DBusMessage *msg, void *data)
-{
-	struct audio_device *dev = data;
-	int err;
-
-	err = source_disconnect(dev, FALSE, generic_cb, msg);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	dbus_message_ref(msg);
-
-	return NULL;
-}
-
-static DBusMessage *source_get_properties(DBusConnection *conn,
-					DBusMessage *msg, void *data)
-{
-	struct audio_device *device = data;
-	struct source *source = device->source;
-	DBusMessage *reply;
-	DBusMessageIter iter;
-	DBusMessageIter dict;
-	const char *state;
-
-	reply = dbus_message_new_method_return(msg);
-	if (!reply)
-		return NULL;
-
-	dbus_message_iter_init_append(reply, &iter);
-
-	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
-
-	/* State */
-	state = state2str(source->state);
-	if (state)
-		dict_append_entry(&dict, "State", DBUS_TYPE_STRING, &state);
-
-	dbus_message_iter_close_container(&iter, &dict);
-
-	return reply;
-}
-
-static const GDBusMethodTable source_methods[] = {
-	{ GDBUS_ASYNC_METHOD("Connect", NULL, NULL, connect_source) },
-	{ GDBUS_ASYNC_METHOD("Disconnect", NULL, NULL, disconnect_source) },
-	{ GDBUS_METHOD("GetProperties",
-				NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
-				source_get_properties) },
-	{ }
-};
-
-static const GDBusSignalTable source_signals[] = {
-	{ GDBUS_SIGNAL("PropertyChanged",
-			GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
-	{ }
-};
-
 static void source_free(struct audio_device *dev)
 {
 	struct source *source = dev->source;
@@ -508,35 +401,18 @@ static void source_free(struct audio_device *dev)
 	dev->source = NULL;
 }
 
-static void path_unregister(void *data)
+void source_unregister(struct audio_device *dev)
 {
-	struct audio_device *dev = data;
-
-	DBG("Unregistered interface %s on path %s",
-			AUDIO_SOURCE_INTERFACE, device_get_path(dev->btd_dev));
+	DBG("%s", device_get_path(dev->btd_dev));
 
 	source_free(dev);
 }
 
-void source_unregister(struct audio_device *dev)
-{
-	g_dbus_unregister_interface(btd_get_dbus_connection(),
-			device_get_path(dev->btd_dev), AUDIO_SOURCE_INTERFACE);
-}
-
 struct source *source_init(struct audio_device *dev)
 {
 	struct source *source;
 
-	if (!g_dbus_register_interface(btd_get_dbus_connection(),
-					device_get_path(dev->btd_dev),
-					AUDIO_SOURCE_INTERFACE,
-					source_methods, source_signals, NULL,
-					dev, path_unregister))
-		return NULL;
-
-	DBG("Registered interface %s on path %s",
-			AUDIO_SOURCE_INTERFACE, device_get_path(dev->btd_dev));
+	DBG("%s", device_get_path(dev->btd_dev));
 
 	if (avdtp_callback_id == 0)
 		avdtp_callback_id = avdtp_add_state_cb(avdtp_state_callback,
-- 
1.7.11.7


^ permalink raw reply related

* [PATCH BlueZ 01/11] audio: Remove AudioSink interface
From: Luiz Augusto von Dentz @ 2012-11-26 13:09 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This interface is no longer needed as Device interface can now connect
the profiles and the state can be tracked using MediaTransport interface.
---
 doc/audio-api.txt     |  53 -------------------
 profiles/audio/sink.c | 141 ++------------------------------------------------
 2 files changed, 3 insertions(+), 191 deletions(-)

diff --git a/doc/audio-api.txt b/doc/audio-api.txt
index 9ace681..47ea4b6 100644
--- a/doc/audio-api.txt
+++ b/doc/audio-api.txt
@@ -51,59 +51,6 @@ Properties	string State
 				Disconnected from the remote device
 
 
-AudioSink hierarchy
-===================
-
-Service		org.bluez
-Interface	org.bluez.AudioSink
-Object path	[variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
-
-Methods		void Connect()
-
-			Connect and setup a stream to a A2DP sink on the
-			remote device.
-
-		void Disconnect()
-
-			Disconnect from the remote device.
-
-		dict GetProperties()
-
-			Returns all properties for the interface. See the
-			properties section for available properties.
-
-			Possible Errors: org.bluez.Error.InvalidArguments
-
-Signals		PropertyChanged(string name, variant value)
-
-			This signal indicates a changed value of the given
-			property.
-
-properties	string State [readonly]
-
-			Possible values: "disconnected", "connecting",
-			"connected", "playing"
-
-			"disconnected" -> "connecting"
-				Either an incoming or outgoing connection
-				attempt ongoing.
-
-			"connecting" -> "disconnected"
-				Connection attempt failed
-
-			"connecting" -> "connected"
-				Successfully connected
-
-			"connected" -> "playing"
-				Audio stream active
-
-			"playing" -> "connected"
-				Audio stream suspended
-
-			"connected" -> "disconnected"
-			"playing" -> "disconnected"
-				Disconnected from the remote device
-
 AudioSource hierarchy
 =====================
 
diff --git a/profiles/audio/sink.c b/profiles/audio/sink.c
index 257cb2f..466c0a8 100644
--- a/profiles/audio/sink.c
+++ b/profiles/audio/sink.c
@@ -87,38 +87,14 @@ static char *str_state[] = {
 	"SINK_STATE_PLAYING",
 };
 
-static const char *state2str(sink_state_t state)
-{
-	switch (state) {
-	case SINK_STATE_DISCONNECTED:
-		return "disconnected";
-	case SINK_STATE_CONNECTING:
-		return "connecting";
-	case SINK_STATE_CONNECTED:
-		return "connected";
-	case SINK_STATE_PLAYING:
-		return "playing";
-	default:
-		error("Invalid sink state %d", state);
-		return NULL;
-	}
-}
-
 static void sink_set_state(struct audio_device *dev, sink_state_t new_state)
 {
 	struct sink *sink = dev->sink;
-	const char *state_str;
 	sink_state_t old_state = sink->state;
 	GSList *l;
 
 	sink->state = new_state;
 
-	state_str = state2str(new_state);
-	if (state_str)
-		emit_property_changed(device_get_path(dev->btd_dev),
-					AUDIO_SINK_INTERFACE, "State",
-					DBUS_TYPE_STRING, &state_str);
-
 	DBG("State changed %s: %s -> %s", device_get_path(dev->btd_dev),
 				str_state[old_state], str_state[new_state]);
 
@@ -366,38 +342,6 @@ gboolean sink_setup_stream(struct sink *sink, struct avdtp *session)
 	return TRUE;
 }
 
-static void generic_cb(struct audio_device *dev, int err, void *data)
-{
-	DBusMessage *msg = data;
-	DBusMessage *reply;
-
-	if (err < 0) {
-		reply = btd_error_failed(msg, strerror(-err));
-		g_dbus_send_message(btd_get_dbus_connection(), reply);
-		dbus_message_unref(msg);
-		return;
-	}
-
-	g_dbus_send_reply(btd_get_dbus_connection(), msg, DBUS_TYPE_INVALID);
-
-	dbus_message_unref(msg);
-}
-
-static DBusMessage *connect_sink(DBusConnection *conn,
-				DBusMessage *msg, void *data)
-{
-	struct audio_device *dev = data;
-	int err;
-
-	err = sink_connect(dev, generic_cb, msg);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	dbus_message_ref(msg);
-
-	return NULL;
-}
-
 int sink_connect(struct audio_device *dev, audio_device_cb cb, void *data)
 {
 	struct sink *sink = dev->sink;
@@ -434,67 +378,6 @@ int sink_connect(struct audio_device *dev, audio_device_cb cb, void *data)
 	return 0;
 }
 
-static DBusMessage *disconnect_sink(DBusConnection *conn,
-					DBusMessage *msg, void *data)
-{
-	struct audio_device *dev = data;
-	int err;
-
-	err = sink_disconnect(dev, FALSE, generic_cb, msg);
-	if (err < 0)
-		return btd_error_failed(msg, strerror(-err));
-
-	dbus_message_ref(msg);
-
-	return NULL;
-}
-
-static DBusMessage *sink_get_properties(DBusConnection *conn,
-					DBusMessage *msg, void *data)
-{
-	struct audio_device *device = data;
-	struct sink *sink = device->sink;
-	DBusMessage *reply;
-	DBusMessageIter iter;
-	DBusMessageIter dict;
-	const char *state;
-
-	reply = dbus_message_new_method_return(msg);
-	if (!reply)
-		return NULL;
-
-	dbus_message_iter_init_append(reply, &iter);
-
-	dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
-			DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
-			DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
-			DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
-
-	/* State */
-	state = state2str(sink->state);
-	if (state)
-		dict_append_entry(&dict, "State", DBUS_TYPE_STRING, &state);
-
-	dbus_message_iter_close_container(&iter, &dict);
-
-	return reply;
-}
-
-static const GDBusMethodTable sink_methods[] = {
-	{ GDBUS_ASYNC_METHOD("Connect", NULL, NULL, connect_sink) },
-	{ GDBUS_ASYNC_METHOD("Disconnect", NULL, NULL, disconnect_sink) },
-	{ GDBUS_METHOD("GetProperties",
-				NULL, GDBUS_ARGS({ "properties", "a{sv}" }),
-				sink_get_properties) },
-	{ }
-};
-
-static const GDBusSignalTable sink_signals[] = {
-	{ GDBUS_SIGNAL("PropertyChanged",
-			GDBUS_ARGS({ "name", "s" }, { "value", "v" })) },
-	{ }
-};
-
 static void sink_free(struct audio_device *dev)
 {
 	struct sink *sink = dev->sink;
@@ -519,35 +402,17 @@ static void sink_free(struct audio_device *dev)
 	dev->sink = NULL;
 }
 
-static void path_unregister(void *data)
-{
-	struct audio_device *dev = data;
-
-	DBG("Unregistered interface %s on path %s",
-			AUDIO_SINK_INTERFACE, device_get_path(dev->btd_dev));
-
-	sink_free(dev);
-}
-
 void sink_unregister(struct audio_device *dev)
 {
-	g_dbus_unregister_interface(btd_get_dbus_connection(),
-			device_get_path(dev->btd_dev), AUDIO_SINK_INTERFACE);
+	DBG("%s", device_get_path(dev->btd_dev));
+	sink_free(dev);
 }
 
 struct sink *sink_init(struct audio_device *dev)
 {
 	struct sink *sink;
 
-	if (!g_dbus_register_interface(btd_get_dbus_connection(),
-					device_get_path(dev->btd_dev),
-					AUDIO_SINK_INTERFACE,
-					sink_methods, sink_signals, NULL,
-					dev, path_unregister))
-		return NULL;
-
-	DBG("Registered interface %s on path %s",
-			AUDIO_SINK_INTERFACE, device_get_path(dev->btd_dev));
+	DBG("%s", device_get_path(dev->btd_dev));
 
 	if (avdtp_callback_id == 0)
 		avdtp_callback_id = avdtp_add_state_cb(avdtp_state_callback,
-- 
1.7.11.7


^ permalink raw reply related

* Re: [PATCH 4/5] adaptername: Remove not needed empty remove callback
From: Anderson Lizardo @ 2012-11-26 12:57 UTC (permalink / raw)
  To: Szymon Janc; +Cc: linux-bluetooth@vger.kernel.org
In-Reply-To: <7243377.vN3q5Zuh5I@uw000953>

Hi Szymon,

On Mon, Nov 26, 2012 at 6:52 AM, Szymon Janc <szymon.janc@tieto.com> wrote:
> On Monday 26 of November 2012 12:45:30 Anderson Lizardo wrote:
>> Hi Szymon,
>
> Hi Anderson,
>
>>
>> On Mon, Nov 26, 2012 at 5:07 AM, Szymon Janc <szymon.janc@tieto.com> wrote:
>> >  static struct btd_adapter_driver adaptername_driver = {
>> >         .name   = "adaptername",
>> >         .probe  = adaptername_probe,
>> > -       .remove = adaptername_remove,
>> > +       .remove = NULL,
>> >  };
>>
>> This variable is static, so not explicitly initialized members will be NULL.
>
> Yes, yet according to code style for bluez statics should be initialized
> explicitly, right? Or this does not count for struct members?

I forgot to mention that I did run this:

egrep -r '^[[:space:]]*\.[a-z_]+[[:space:]]*=.*NULL' *

with no results, which means no other structs are initializing unused
members with NULL. But you are right that we are still initializing
non-compound static variables explicitly to NULL or 0, as per
convention.

Best Regards,
-- 
Anderson Lizardo
Instituto Nokia de Tecnologia - INdT
Manaus - Brazil

^ permalink raw reply

* Re: [PATCH v2 1/2] adaptername: Remove not needed empty remove callback
From: Johan Hedberg @ 2012-11-26 12:56 UTC (permalink / raw)
  To: Szymon Janc; +Cc: linux-bluetooth
In-Reply-To: <1353930524-22701-1-git-send-email-szymon.janc@tieto.com>

Hi Szymon,

On Mon, Nov 26, 2012, Szymon Janc wrote:
> Remove callback is called only if it is not NULL so there is no need to
> register empty callback function.
> ---
>  plugins/adaptername.c |    5 -----
>  1 file changed, 5 deletions(-)

Both patches have been applied. Thanks.

Johan

^ permalink raw reply

* Re: USB 2.0: No giveback comes for one submitted URB
From: naveen yadav @ 2012-11-26 12:23 UTC (permalink / raw)
  To: Alan Stern
  Cc: linux-kernel, linux-usb, marcel, padovan, linux-bluetooth,
	vivek bhagat
In-Reply-To: <Pine.LNX.4.44L0.1211221036030.345-100000@netrider.rowland.org>

[-- Attachment #1: Type: text/plain, Size: 1570 bytes --]

Dear Alan,

Thanks for your reply ,

We check on 3.2.34 and 3.6.7 on X86 host machine. and result is same
without connecting Bluetooth device.
I am attaching log



On Thu, Nov 22, 2012 at 9:08 PM, Alan Stern <stern@rowland.harvard.edu> wrote:
> On Thu, 22 Nov 2012, naveen yadav wrote:
>
>> Hi,
>>
>> we are using 3.2.2 version of kernel.
>>
>> When Bluetooth(connected to USB 2.0) is suspended, urb->use_count
>> value does not become zero and eventually there is a continuous wait
>> in wait_event() of usb_kill_urb().
>>           wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
>>
>> urb_count is incremented at only one place in usb_hcd_submit_urb() and
>
> That's how it is _supposed_ to work.  You have discovered that
> something else increments urb->use_count.
>
>> decremented in usb_hcd_giveback_urb(). (Also, in error case inside
>> usb_hcd_submit_urb()). After taking print of  urb->use_count at all
>> these places, I see, even without connecting the Bluetooth device
>> urb_count is incremented while below execution has never been
>> decremented.
>
>> .....
>> [    3.490000] ====>[usb_hcd_giveback_urb][1626] urb->use_count = 0
>> pipe=2147484032 [vid=0x1d6b] [pid=0x0002][devno=1]
>> [    3.540000] ====>[usb_hcd_submit_urb][1482] urb->use_count = 2
>> pipe=1077969280 [vid=0x1d6b] [pid=0x0002][devno=1]
>> [    3.540000] ====>[usb_hcd_giveback_urb][1626] urb->use_count = 1
>> pipe=1077969280 [vid=0x1d6b] [pid=0x0002][devno=1]
>
> Now you need to find out what other code has changed urb->use_count and
> fix it.
>
> Alan Stern
>

[-- Attachment #2: 3.2.34_USB.log --]
[-- Type: application/octet-stream, Size: 85522 bytes --]

[    1.463111] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0000][devno=1]
[    1.463116] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0000][devno=1]
[    1.463121] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463125] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463129] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463133] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463139] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463142] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463156] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463158] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463160] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463162] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463164] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463166] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463232] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463234] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463278] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463280] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463287] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463289] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463291] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463292] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.463297] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bdf800] [pid=0x0002][devno=1]
[    1.463301] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bdf800] [pid=0x0002][devno=1]
[    1.463303] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bdf800] [pid=0x0002][devno=1]
[    1.463307] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bdf800] [pid=0x0002][devno=1]
[    1.477063] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0000][devno=1]
[    1.477067] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0000][devno=1]
[    1.477072] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477075] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477079] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477083] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477088] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477092] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477098] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477101] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477112] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477114] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477116] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477117] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477179] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477181] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477221] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477223] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477229] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477231] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477233] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477235] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.477239] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bdf680] [pid=0x0002][devno=1]
[    1.477243] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bdf680] [pid=0x0002][devno=1]
[    1.477244] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bdf680] [pid=0x0002][devno=1]
[    1.477248] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bdf680] [pid=0x0002][devno=1]
[    1.562781] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.562795] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.562803] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.562810] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.562814] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.562819] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.576727] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.576737] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.576744] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.576750] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.576754] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.576759] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf5bd9980] [pid=0x0002][devno=1]
[    1.662459] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=1077969280 [urb=0xf5bdf880] [pid=0x0002][devno=1]
[    1.662533] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf58b4980] [pid=0x0002][devno=1]
[    1.662537] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf58b4980] [pid=0x0002][devno=1]
[    1.662544] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf58b4980] [pid=0x0002][devno=1]
[    1.662548] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf58b4980] [pid=0x0002][devno=1]
[    1.676403] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=1077969280 [urb=0xf5bdf700] [pid=0x0002][devno=1]
[    1.713291] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf58b4980] [pid=0x0002][devno=1]
[    1.713583] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf58b4980] [pid=0x0002][devno=1]
[    1.764109] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59c7800] [pid=0x0002][devno=1]
[    1.764116] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59c7800] [pid=0x0002][devno=1]
[    1.764125] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483776 [urb=0xf59c7800] [pid=0x0000][devno=0]
[    1.764172] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483776 [urb=0xf59c7800] [pid=0x0000][devno=0]
[    1.764182] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.764188] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.814972] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf4c8e600] [pid=0x0002][devno=1]
[    1.815258] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf4c8e600] [pid=0x0002][devno=1]
[    1.865776] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.865786] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.865792] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483648 [urb=0xf59f4280] [pid=0x0000][devno=0]
[    1.865846] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483648 [urb=0xf59f4280] [pid=0x0000][devno=0]
[    1.877801] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf5afc280] [pid=0x0000][devno=2]
[    1.877932] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf5afc280] [pid=0x0000][devno=2]
[    1.877960] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4e00] [pid=0x0024][devno=2]
[    1.878056] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4e00] [pid=0x0024][devno=2]
[    1.878065] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4e00] [pid=0x0024][devno=2]
[    1.878174] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4e00] [pid=0x0024][devno=2]
[    1.878278] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf5afcb80] [pid=0x0024][devno=2]
[    1.878430] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf5afcb80] [pid=0x0024][devno=2]
[    1.878496] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.878547] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.878562] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.878704] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.878712] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.878822] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.878843] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.878931] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.878939] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.879065] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.879079] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.879177] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.879185] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.879315] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4280] [pid=0x0024][devno=2]
[    1.879365] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.879371] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.879382] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.879395] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59f4280] [pid=0x0002][devno=1]
[    1.929567] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    1.929880] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    1.978409] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978473] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978480] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978595] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978602] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978720] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978726] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978845] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    1.978851] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=1077969536 [urb=0xf59f4c80] [pid=0x0024][devno=2]
[    1.980399] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    1.980405] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    1.980413] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483776 [urb=0xf59f4600] [pid=0x0000][devno=0]
[    1.980472] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483776 [urb=0xf59f4600] [pid=0x0000][devno=0]
[    1.980481] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    1.980487] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    2.031238] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484032 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    2.031423] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484032 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    2.082075] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483904 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    2.082082] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483904 [urb=0xf59f4600] [pid=0x0002][devno=1]
[    2.082086] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483648 [urb=0xf59f4600] [pid=0x0000][devno=0]
[    2.082134] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483648 [urb=0xf59f4600] [pid=0x0000][devno=0]
[    2.094035] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0000][devno=2]
[    2.094102] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0000][devno=2]
[    2.094120] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094239] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094248] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094364] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094446] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094608] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094643] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094733] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094745] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094843] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094851] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.094988] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.095001] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095098] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095107] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095238] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095246] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095341] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095347] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095484] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095493] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095611] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095619] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.095714] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.194709] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.194774] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.194783] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.194912] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.194920] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195036] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195044] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195160] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195169] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195282] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195293] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195409] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195418] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195515] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195524] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.195659] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.294383] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=1077969536 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.294455] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf5afcf00] [pid=0x0024][devno=2]
[    2.294587] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf5afcf00] [pid=0x0024][devno=2]
[    2.294604] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.294720] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.305343] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.305423] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.316310] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.316387] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.367145] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.367219] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.367238] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483776 [urb=0xf59f4b00] [pid=0x0000][devno=0]
[    2.367492] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483776 [urb=0xf59f4b00] [pid=0x0000][devno=0]
[    2.367502] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.367607] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.378106] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.378169] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.389076] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.389153] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.439910] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.439986] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b00] [pid=0x0024][devno=2]
[    2.440002] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483648 [urb=0xf59f4b00] [pid=0x0000][devno=0]
[    2.440116] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483648 [urb=0xf59f4b00] [pid=0x0000][devno=0]
[    2.451874] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b00] [pid=0x0000][devno=3]
[    2.452342] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b00] [pid=0x0000][devno=3]
[    2.452355] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.452442] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.452454] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.452677] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.452688] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.452927] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.452940] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.453301] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b00] [pid=0x6001][devno=3]
[    2.453361] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf5afcb80] [pid=0x6001][devno=3]
[    2.453695] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf5afcb80] [pid=0x6001][devno=3]
[    2.453708] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.453963] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.453976] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.456075] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.456087] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.457038] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.457048] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.458408] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.458494] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484416 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.458656] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484416 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.458674] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.460922] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484544 [urb=0xf59f4b80] [pid=0x6001][devno=3]
[    2.461009] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.461149] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.461159] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.461277] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.471803] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.471864] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.483763] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.483825] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.493669] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077969536 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.493673] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077969536 [urb=0xf59f4600] [pid=0x0024][devno=2]
[    2.534598] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.534678] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.534697] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483776 [urb=0xf59f4b80] [pid=0x0000][devno=0]
[    2.535302] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483776 [urb=0xf59f4b80] [pid=0x0000][devno=0]
[    2.535313] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.535407] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.545566] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.545624] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4b80] [pid=0x0024][devno=2]
[    2.556530] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4380] [pid=0x0024][devno=2]
[    2.556604] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4380] [pid=0x0024][devno=2]
[    2.607370] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484160 [urb=0xf59f4400] [pid=0x0024][devno=2]
[    2.607425] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484160 [urb=0xf59f4400] [pid=0x0024][devno=2]
[    2.607441] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147483648 [urb=0xf59f4400] [pid=0x0000][devno=0]
[    2.607671] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147483648 [urb=0xf59f4400] [pid=0x0000][devno=0]
[    2.619327] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484800 [urb=0xf59f4400] [pid=0x0000][devno=4]
[    2.619902] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484800 [urb=0xf59f4400] [pid=0x0000][devno=4]
[    2.619917] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.620545] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.620557] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.621542] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.621560] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.621895] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.621909] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.622771] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.622860] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484672 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.623137] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484672 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.623247] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484672 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.623530] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484672 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.623542] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.624903] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484800 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[    2.625099] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=2147484288 [urb=0xf59f4880] [pid=0x0024][devno=2]
[    2.625256] ====>[usb_hcd_giveback_urb][1617] use count = 0 pipe=2147484288 [urb=0xf59f4880] [pid=0x0024][devno=2]
[   13.177009] ====>[usb_hcd_submit_urb][1479] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.774102] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.774110] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.782070] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.782076] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.790036] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.790041] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.797976] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.797981] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.805952] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.805958] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.813920] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.813925] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.821892] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.821897] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.829905] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.829910] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.837879] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.837884] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.845857] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.845862] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.853832] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.853837] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.861800] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.861805] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.869776] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.869781] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.877747] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.877752] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.885721] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.885726] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.893695] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.893700] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.901656] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.901662] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.909647] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.909652] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.917618] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.917623] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.925593] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.925598] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.933567] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.933572] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.941540] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.941545] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.949514] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.949519] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.957487] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.957492] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.965438] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.965443] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.973437] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.973442] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.981409] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.981414] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.989384] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.989389] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.997356] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   29.997361] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.005332] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.005336] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.021280] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.021285] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.029254] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.029259] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.037227] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.037232] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.045218] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.045225] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.053177] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.053182] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.061151] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.061156] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.069123] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.069128] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.077097] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.077101] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.085071] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.085076] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.093047] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.093052] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.101018] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.101022] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.108997] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.109002] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.116968] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.116973] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.124943] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.124948] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.132915] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.132920] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.140888] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.140893] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.148864] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.148868] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.156837] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.156842] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.164812] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.164816] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.172785] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.172790] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.180758] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.180763] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.188733] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.188738] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.196705] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.196710] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.499735] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.499743] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.507697] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.507702] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.515666] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.515671] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.523643] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.523648] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.531615] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.531620] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.539596] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.539601] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.547564] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.547569] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.555540] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.555545] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.563511] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.563516] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.571486] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.571490] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.579461] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.579466] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.587433] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.587438] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.595409] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.595414] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.603384] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.603389] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.611360] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.611365] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.619333] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.619338] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.627303] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.627308] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.635277] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.635282] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.643250] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.643255] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.707044] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.707049] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.794765] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.794771] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.810709] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   30.810714] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.041957] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.041962] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.073849] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.073854] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.185485] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.185489] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.241303] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.241308] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.249278] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.249283] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.352922] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.352927] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.368872] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.368877] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.384807] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.384811] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.392779] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.392785] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.400753] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.400758] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.408735] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.408743] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.416713] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.416718] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.424680] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.424686] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.432683] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.432688] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.440657] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.440662] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.448630] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.448635] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.456606] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.456611] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.464577] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.464582] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.472551] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.472555] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.480524] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.480529] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.488499] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.488504] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.496472] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.496477] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.504446] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.504450] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.512421] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.512425] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.520393] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.520398] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.528369] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.528374] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.536342] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.536346] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.544315] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.544320] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.552292] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.552297] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.560242] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.560248] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.568214] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.568219] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.576211] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.576216] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.584185] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.584190] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.592159] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.592163] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.600134] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.600138] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.608110] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.608115] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.616084] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.616089] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.624061] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.624066] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.632029] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.632034] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.640003] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.640008] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.647977] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.647982] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.663908] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.663913] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.671900] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.671904] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.679874] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.679879] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.687847] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.687852] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.695821] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.695825] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.703794] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.703799] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.711770] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.711774] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.719743] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.719748] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.727718] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.727723] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.735662] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.735666] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.743669] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.743674] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.751640] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.751645] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.759613] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.759617] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.767587] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.767591] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.775561] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.775566] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.783535] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.783540] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.791510] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.791515] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.799483] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.799487] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.807458] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.807463] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.815431] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.815436] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.823407] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.823412] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.831379] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.831383] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.839357] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.839362] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.847327] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.847332] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.855304] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.855309] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.863279] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.863283] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.871252] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.871257] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.879226] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.879231] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.887200] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.887205] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.895171] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.895176] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.903100] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.903104] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.911103] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.911108] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.919066] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.919071] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.927071] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.927076] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.935043] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.935047] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.943017] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.943021] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.950990] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.950995] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.958963] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.958968] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.966938] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.966943] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.974913] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.974917] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.982886] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.982891] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.990860] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.990865] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.998835] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   31.998840] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.006810] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.006815] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.014782] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.014787] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.022770] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.022777] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.030731] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.030735] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.038710] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.038715] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.046679] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.046684] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.054653] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.054658] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.062600] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.062605] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.070603] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.070607] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.078575] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.078579] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.086551] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.086555] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.094524] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.094529] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.102499] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.102503] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.110471] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.110476] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.134393] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   32.134397] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   35.316043] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   35.316051] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   35.419703] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   35.419710] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.153260] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.153265] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.161256] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.161262] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.169199] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.169202] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.177203] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.177208] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.185150] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.185153] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.193152] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.193157] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.201110] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.201112] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.209069] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.209072] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.217051] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.217055] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.225026] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.225030] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.232995] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.232999] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.240977] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.240982] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.248952] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.248958] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.256934] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.256942] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.264898] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.264902] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.272865] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.272868] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.280841] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.280845] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.288812] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.288816] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.296789] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.296793] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.304774] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.304780] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.312735] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.312738] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.320710] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.320714] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.328683] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.328687] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.336689] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.336694] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.344628] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.344630] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.352617] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.352623] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.360579] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.360582] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.368553] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.368556] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.376525] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.376528] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.384537] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.384545] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.392473] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.392476] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.400484] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.400491] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.408435] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.408438] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.416445] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.416450] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.424367] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.424370] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.432390] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.432394] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.440315] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.440318] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.448337] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.448342] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.456277] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.456280] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.464286] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.464290] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.472210] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.472212] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.480236] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.480241] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.488174] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.488177] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.496182] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.496186] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.504109] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.504112] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.512092] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.512097] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.520070] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.520073] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.528080] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.528085] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.536017] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.536019] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.544028] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.544032] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.551966] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.551969] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.559974] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.559979] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.567898] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.567901] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.575923] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.575928] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.647658] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.647661] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.679538] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   36.679541] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   37.150064] ====>[usb_hcd_submit_urb][1479] use count = 2 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]
[   37.150071] ====>[usb_hcd_giveback_urb][1617] use count = 1 pipe=1077970048 [urb=0xf59f4400] [pid=0x4d64][devno=4]

[-- Attachment #3: 3.6.7_USB.log --]
[-- Type: application/octet-stream, Size: 194566 bytes --]

[    1.146809] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0000][devno=1]
[    1.146813] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0000][devno=1]
[    1.146819] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146822] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146824] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146827] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146832] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146834] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146839] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146842] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146845] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146856] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146857] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146859] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146934] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146935] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146973] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146975] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146982] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146983] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146985] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146986] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.146990] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5aaef00] [pid=0x0002][devno=1]
[    1.146993] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5aaef00] [pid=0x0002][devno=1]
[    1.146995] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5aaef00] [pid=0x0002][devno=1]
[    1.146998] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5aaef00] [pid=0x0002][devno=1]
[    1.156772] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0000][devno=1]
[    1.156775] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0000][devno=1]
[    1.156779] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156781] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156784] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156787] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156791] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156793] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156798] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156801] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156804] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156807] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156810] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156812] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156887] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156888] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156924] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156925] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156931] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156933] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156934] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156935] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.156939] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5aae180] [pid=0x0002][devno=1]
[    1.156942] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5aae180] [pid=0x0002][devno=1]
[    1.156943] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5aae180] [pid=0x0002][devno=1]
[    1.156947] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5aae180] [pid=0x0002][devno=1]
[    1.246483] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.246495] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.246502] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.246507] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.246510] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.246514] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.256440] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.256450] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.256456] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.256461] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.256464] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.256468] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf58b6480] [pid=0x0002][devno=1]
[    1.346161] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=1077969280 [urb=0xf5aaee80] [pid=0x0002][devno=1]
[    1.346233] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5b2f800] [pid=0x0002][devno=1]
[    1.346236] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5b2f800] [pid=0x0002][devno=1]
[    1.346242] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5b2f800] [pid=0x0002][devno=1]
[    1.346246] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5b2f800] [pid=0x0002][devno=1]
[    1.356121] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=1077969280 [urb=0xf5aae200] [pid=0x0002][devno=1]
[    1.396992] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf5b2f800] [pid=0x0002][devno=1]
[    1.397182] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf5b2f800] [pid=0x0002][devno=1]
[    1.447815] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf5b2f080] [pid=0x0002][devno=1]
[    1.447821] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf5b2f080] [pid=0x0002][devno=1]
[    1.447828] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483776 [urb=0xf5b2f080] [pid=0x0000][devno=0]
[    1.447897] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483776 [urb=0xf5b2f080] [pid=0x0000][devno=0]
[    1.447905] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf51d9a00] [pid=0x0002][devno=1]
[    1.447911] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf51d9a00] [pid=0x0002][devno=1]
[    1.498648] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf53b5780] [pid=0x0002][devno=1]
[    1.498857] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf53b5780] [pid=0x0002][devno=1]
[    1.549476] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf4cd1500] [pid=0x0002][devno=1]
[    1.549484] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf4cd1500] [pid=0x0002][devno=1]
[    1.549488] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483648 [urb=0xf4cd1500] [pid=0x0000][devno=0]
[    1.549566] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483648 [urb=0xf4cd1500] [pid=0x0000][devno=0]
[    1.561436] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0000][devno=2]
[    1.561540] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0000][devno=2]
[    1.561568] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.561654] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.561662] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.561786] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.561887] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562033] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562108] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562156] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562179] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562276] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562294] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562402] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.562414] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562540] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562548] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562652] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562659] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562788] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562803] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562900] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1500] [pid=0x0024][devno=2]
[    1.562941] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf4cd1500] [pid=0x0002][devno=1]
[    1.562954] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf4cd1500] [pid=0x0002][devno=1]
[    1.562959] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf4cd1500] [pid=0x0002][devno=1]
[    1.562963] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf4cd1500] [pid=0x0002][devno=1]
[    1.613267] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf4cd1b80] [pid=0x0002][devno=1]
[    1.613479] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf4cd1b80] [pid=0x0002][devno=1]
[    1.662112] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662196] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662204] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662319] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662324] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662443] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662449] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662568] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.662573] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=1077969536 [urb=0xf4cd1380] [pid=0x0024][devno=2]
[    1.664100] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf4cd1b80] [pid=0x0002][devno=1]
[    1.664106] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf4cd1b80] [pid=0x0002][devno=1]
[    1.664112] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483776 [urb=0xf4cd1b80] [pid=0x0000][devno=0]
[    1.664205] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483776 [urb=0xf4cd1b80] [pid=0x0000][devno=0]
[    1.664214] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf4cd1b80] [pid=0x0002][devno=1]
[    1.664220] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf4cd1b80] [pid=0x0002][devno=1]
[    1.714941] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484032 [urb=0xf4cd1400] [pid=0x0002][devno=1]
[    1.715144] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484032 [urb=0xf4cd1400] [pid=0x0002][devno=1]
[    1.765776] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483904 [urb=0xf4cd1980] [pid=0x0002][devno=1]
[    1.765783] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483904 [urb=0xf4cd1980] [pid=0x0002][devno=1]
[    1.765786] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483648 [urb=0xf4cd1980] [pid=0x0000][devno=0]
[    1.765864] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483648 [urb=0xf4cd1980] [pid=0x0000][devno=0]
[    1.777739] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1c00] [pid=0x0000][devno=2]
[    1.777820] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1c00] [pid=0x0000][devno=2]
[    1.777841] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    1.777943] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    1.777948] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    1.778067] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    1.778171] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1980] [pid=0x0024][devno=2]
[    1.778331] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1980] [pid=0x0024][devno=2]
[    1.778375] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1980] [pid=0x0024][devno=2]
[    1.778455] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1980] [pid=0x0024][devno=2]
[    1.778468] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1980] [pid=0x0024][devno=2]
[    1.778568] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1980] [pid=0x0024][devno=2]
[    1.778572] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf58b6380] [pid=0x0024][devno=2]
[    1.778691] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf58b6380] [pid=0x0024][devno=2]
[    1.778703] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.778816] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.778823] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.778939] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.778944] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.779063] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.779068] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.779189] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1180] [pid=0x0024][devno=2]
[    1.779193] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf58b6b80] [pid=0x0024][devno=2]
[    1.779314] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf58b6b80] [pid=0x0024][devno=2]
[    1.779320] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.779437] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1b80] [pid=0x0024][devno=2]
[    1.878412] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878514] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878524] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878634] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878641] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878758] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878766] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878885] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.878892] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879008] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879020] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879134] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879141] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879257] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879267] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.879381] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf5b05380] [pid=0x0024][devno=2]
[    1.978084] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=1077969536 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    1.978156] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf5b27800] [pid=0x0024][devno=2]
[    1.978305] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf5b27800] [pid=0x0024][devno=2]
[    1.978323] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1800] [pid=0x0024][devno=2]
[    1.978428] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1800] [pid=0x0024][devno=2]
[    1.989073] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1280] [pid=0x0024][devno=2]
[    1.989136] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1280] [pid=0x0024][devno=2]
[    2.000012] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1600] [pid=0x0024][devno=2]
[    2.000121] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1600] [pid=0x0024][devno=2]
[    2.050845] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1100] [pid=0x0024][devno=2]
[    2.050962] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1100] [pid=0x0024][devno=2]
[    2.050976] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483776 [urb=0xf4cd1100] [pid=0x0000][devno=0]
[    2.051216] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483776 [urb=0xf4cd1100] [pid=0x0000][devno=0]
[    2.051224] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1100] [pid=0x0024][devno=2]
[    2.051327] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1100] [pid=0x0024][devno=2]
[    2.061813] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1580] [pid=0x0024][devno=2]
[    2.061916] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1580] [pid=0x0024][devno=2]
[    2.072773] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1580] [pid=0x0024][devno=2]
[    2.072856] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1580] [pid=0x0024][devno=2]
[    2.123607] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1200] [pid=0x0024][devno=2]
[    2.123721] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1200] [pid=0x0024][devno=2]
[    2.123731] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483648 [urb=0xf4cd1200] [pid=0x0000][devno=0]
[    2.123839] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483648 [urb=0xf4cd1200] [pid=0x0000][devno=0]
[    2.135577] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x0000][devno=3]
[    2.136064] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x0000][devno=3]
[    2.136074] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.136179] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.136189] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.136562] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.136573] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.136817] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.136827] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.137167] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.137175] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.137541] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.137551] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.137650] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.137659] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.139764] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.139770] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.140672] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.140681] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.142008] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.142135] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484416 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.142275] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484416 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.142309] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.144519] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484544 [urb=0xf4cd1200] [pid=0x6001][devno=3]
[    2.144584] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1200] [pid=0x0024][devno=2]
[    2.144747] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1200] [pid=0x0024][devno=2]
[    2.144760] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf4cd1200] [pid=0x0024][devno=2]
[    2.144871] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf4cd1200] [pid=0x0024][devno=2]
[    2.155507] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf4cd1480] [pid=0x0024][devno=2]
[    2.155610] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf4cd1480] [pid=0x0024][devno=2]
[    2.166470] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf58b6b80] [pid=0x0024][devno=2]
[    2.166582] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf58b6b80] [pid=0x0024][devno=2]
[    2.173280] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077969536 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    2.173284] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077969536 [urb=0xf4cd1c00] [pid=0x0024][devno=2]
[    2.217304] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf58b6f00] [pid=0x0024][devno=2]
[    2.217411] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf58b6f00] [pid=0x0024][devno=2]
[    2.217421] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483776 [urb=0xf58b6f00] [pid=0x0000][devno=0]
[    2.218009] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483776 [urb=0xf58b6f00] [pid=0x0000][devno=0]
[    2.218015] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf58b6f00] [pid=0x0024][devno=2]
[    2.218133] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf58b6f00] [pid=0x0024][devno=2]
[    2.228271] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf58b6580] [pid=0x0024][devno=2]
[    2.228376] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf58b6580] [pid=0x0024][devno=2]
[    2.239231] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf58b6f00] [pid=0x0024][devno=2]
[    2.239314] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf58b6f00] [pid=0x0024][devno=2]
[    2.290071] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484160 [urb=0xf58b6e00] [pid=0x0024][devno=2]
[    2.290167] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484160 [urb=0xf58b6e00] [pid=0x0024][devno=2]
[    2.290175] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147483648 [urb=0xf58b6e00] [pid=0x0000][devno=0]
[    2.290561] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147483648 [urb=0xf58b6e00] [pid=0x0000][devno=0]
[    2.302032] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484800 [urb=0xf58b6b80] [pid=0x0000][devno=4]
[    2.302648] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484800 [urb=0xf58b6b80] [pid=0x0000][devno=4]
[    2.302658] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.303271] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.303279] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.304233] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.304244] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.304600] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.304607] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.305599] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.305713] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484672 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.306118] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484672 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.306186] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484672 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.306470] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484672 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.306476] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.307841] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484800 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[    2.308008] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=2147484288 [urb=0xf58b6800] [pid=0x0024][devno=2]
[    2.308090] ====>[usb_hcd_giveback_urb][1620] use count = 0 pipe=2147484288 [urb=0xf58b6800] [pid=0x0024][devno=2]
[   12.628129] ====>[usb_hcd_submit_urb][1482] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.387845] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.387852] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.395816] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.395822] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.403785] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.403789] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.411757] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.411761] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.419731] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.419735] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.427708] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.427713] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.435679] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.435683] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.443653] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.443658] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.595159] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.595163] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.603136] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.603140] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.611108] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.611112] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.619082] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.619086] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.627057] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.627062] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.635031] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.635035] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.643006] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.643011] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.650980] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.650984] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.658951] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.658954] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.666924] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.666928] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.674900] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.674904] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.682873] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.682877] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.690846] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.690850] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.698822] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.698826] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.706796] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.706800] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.714769] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.714773] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.722744] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.722748] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.730716] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.730720] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.738690] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.738694] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.746666] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   37.746670] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.137393] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.137397] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.145366] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.145370] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.153340] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.153344] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.161315] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.161319] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.169290] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.169294] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.177262] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.177265] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.185236] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.185240] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.193212] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.193216] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.201183] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.201187] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.209157] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.209161] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.217133] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.217137] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.225106] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.225110] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.233080] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.233084] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.241055] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.241059] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.249027] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.249031] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.257002] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.257006] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.264977] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.264981] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.272950] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.272954] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.280924] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.280928] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.288898] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.288902] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.296871] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.296875] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.312820] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.312824] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.320795] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.320799] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.368639] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.368643] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.376612] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.376616] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.384586] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.384589] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.392561] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.392565] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.400536] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.400540] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.408516] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.408522] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.416483] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.416487] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.424459] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.424464] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.432431] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.432435] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.440402] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.440406] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.448379] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.448383] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.456356] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.456360] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.464327] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.464331] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.472304] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.472308] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.480277] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.480281] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.488248] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.488252] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.496223] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.496227] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.504196] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.504200] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.512171] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.512174] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.520146] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.520150] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.528121] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.528125] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.536092] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.536096] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.544068] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.544072] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.552041] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.552044] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.560014] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.560018] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.567991] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.567994] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.575962] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.575966] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.583936] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.583940] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.591911] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.591914] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.599885] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.599889] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.607860] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.607864] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.615833] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.615837] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.623806] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   38.623810] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.102247] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.102251] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.110223] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.110227] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.118197] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.118201] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.126170] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.126173] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.134144] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.134148] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.150092] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.150096] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.158066] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.158070] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.174025] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.174032] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.700310] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.700317] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.708278] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.708283] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.716248] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.716252] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.724222] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.724226] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.732196] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.732200] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.740168] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.740172] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.748145] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.748149] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.756121] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.756124] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.764092] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.764096] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.772068] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.772071] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.788015] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   39.788019] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.067106] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.067110] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.075079] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.075083] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.083051] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.083055] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.091025] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.091029] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.098999] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.099003] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.106974] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.106978] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.114948] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.114952] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.122922] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.122926] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.130895] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.130899] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.138870] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.138874] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.146846] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.146851] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.154818] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.154822] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.162792] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.162796] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.170765] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.170769] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.178739] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.178743] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.186714] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.186718] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.194688] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.194692] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.202662] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.202666] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.210639] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.210643] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.218614] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.218618] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.226583] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.226587] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.234557] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.234561] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.242531] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.242535] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.258480] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.258484] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.689081] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.689085] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.800728] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   40.800735] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.430670] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.430678] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.438638] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.438644] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.446610] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.446614] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.454583] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.454587] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.462558] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.462562] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.470533] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.470537] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.478506] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.478510] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.486480] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.486484] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.494452] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.494456] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.502393] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.502397] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.510402] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.510406] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.518375] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.518379] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.526349] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.526353] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.534323] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.534327] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.542296] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.542300] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.550273] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.550277] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.558248] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.558253] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.566221] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.566225] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.574195] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.574199] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.582169] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.582173] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.590144] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.590148] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.598114] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.598119] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.606090] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.606094] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.614064] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.614067] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.622039] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.622043] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.630014] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.630018] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.637985] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.637989] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.645959] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.645963] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.653934] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.653938] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.661908] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.661913] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.669882] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.669887] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.677856] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.677860] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.685829] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.685833] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.693803] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.693807] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.701781] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.701785] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.709752] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.709756] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.717727] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.717731] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.725700] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.725704] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.733672] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.733677] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.741648] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.741653] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.749622] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.749626] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.757607] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.757614] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.765571] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.765575] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.773529] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.773536] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.781520] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.781525] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.789494] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.789498] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.797467] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.797471] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.805442] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.805446] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.813416] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.813420] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.821388] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.821392] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.829362] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.829366] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.837336] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.837340] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.845319] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.845326] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.853286] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.853290] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.861259] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.861263] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.869234] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.869238] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.925049] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.925053] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.933024] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.933029] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.940999] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.941003] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.948973] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.948977] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.956949] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.956953] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.964920] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.964924] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.972898] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.972901] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.980868] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.980872] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.988842] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.988846] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.996817] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   41.996821] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.004787] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.004791] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.012765] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.012769] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.020747] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.020753] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.036692] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.036697] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.044664] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.044668] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.084532] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.084536] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.092504] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.092508] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.100479] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.100483] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.124400] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.124404] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.140349] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.140352] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.148321] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.148326] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.156296] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.156300] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.164272] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.164276] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.267934] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.267938] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.275907] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.275912] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.283880] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.283885] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.291855] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.291859] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.299830] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.299834] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.307799] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.307803] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.315777] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.315781] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.323751] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.323755] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.331725] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.331729] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.339698] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.339702] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.347674] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.347678] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.355632] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.355638] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.363623] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.363627] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.371595] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.371600] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.379570] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.379574] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.387544] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.387548] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.395518] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.395523] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.411466] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.411470] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.419438] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.419442] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.435386] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.435390] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.499180] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.499184] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.642713] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.642717] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.746382] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   42.746388] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.153061] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.153068] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.161027] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.161032] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.169003] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.169009] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.176975] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.176980] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.184947] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.184952] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.192922] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.192927] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.200857] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.200862] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.208849] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.208854] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.216816] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.216822] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.224789] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.224796] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.232814] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.232821] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.240774] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.240780] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.248707] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.248713] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.256677] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.256681] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.264649] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.264654] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.272667] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.272673] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.280609] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.280613] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.288569] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.288574] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.296581] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.296587] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.304523] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.304528] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.312496] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.312502] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.320467] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.320471] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.328457] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.328462] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.336456] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.336461] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.344391] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.344396] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.352359] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.352363] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.360381] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.360388] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.368349] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.368354] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.376323] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.376328] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.384296] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.384300] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.392234] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.392238] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.400254] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.400262] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.408222] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.408227] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.416195] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.416199] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.424172] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.424179] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.432140] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.432144] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.440115] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.440119] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.448062] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.448066] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.456040] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.456044] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.463998] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.464003] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.471969] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.471972] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.479990] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.479996] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.487961] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.487966] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.495895] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.495901] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.503865] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.503868] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.511838] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.511841] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.519814] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.519817] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.527832] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.527838] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.535804] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.535809] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.543776] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.543781] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.551752] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.551757] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.559688] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.559693] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.567662] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.567667] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.575672] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.575676] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.583648] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.583652] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.591580] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.591583] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.599559] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.599566] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.607574] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.607580] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.615508] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.615513] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.631453] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.631459] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.783013] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.783021] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.918561] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[   43.918567] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.417779] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.417787] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.425741] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.425746] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.433712] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.433716] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.441687] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.441691] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.449659] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.449663] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.457633] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.457637] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.465607] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.465611] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.473583] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.473586] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.481558] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.481562] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.489529] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.489533] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.497514] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.497521] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.505478] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.505482] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.513451] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.513455] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.521425] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.521429] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.529399] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.529403] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.537375] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.537379] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.545347] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.545351] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.553321] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.553325] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.561295] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.561299] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.569269] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.569272] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.577258] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.577265] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.585220] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.585224] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.593192] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.593196] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.601166] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.601170] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.609143] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.609147] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.617113] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.617117] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.625088] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.625092] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.633061] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.633065] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.641035] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.641039] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.649009] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.649013] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.672934] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.672938] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.680906] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.680910] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.688879] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.688883] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.696853] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.696857] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.704828] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.704832] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.712801] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.712805] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.720776] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.720779] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.728749] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.728753] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.736725] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.736729] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.744697] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.744701] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.752672] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.752676] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.760646] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.760650] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.768619] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.768623] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.776595] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.776599] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.784570] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.784573] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.792543] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.792547] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.800518] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.800522] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.808492] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.808496] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.816466] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.816470] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.824438] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.824442] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.832412] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.832416] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.840388] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.840392] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.848361] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.848365] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.856334] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.856338] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.864308] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.864312] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.872282] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.872286] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.880256] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.880260] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.888232] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.888237] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.896204] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.896208] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.904178] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.904182] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.912152] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.912156] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.920125] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.920129] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.928099] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.928103] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.936075] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.936079] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.944048] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.944052] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.952022] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.952026] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.959996] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.960000] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.967971] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.967974] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.975905] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.975909] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.983918] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.983922] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.991892] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.991897] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.999866] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  153.999870] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.007839] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.007843] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.047709] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.047713] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.055683] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.055687] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.063657] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.063661] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.071633] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.071637] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.079607] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.079610] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.087580] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.087584] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.095553] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.095557] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.103528] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.103532] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.111502] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.111506] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.119477] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.119480] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.127450] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.127454] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.135388] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.135392] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.143398] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.143402] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.151373] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.151377] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.159349] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.159354] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.167320] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.167324] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.223141] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.223145] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.231115] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.231119] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.239090] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.239094] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.247062] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.247066] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.255003] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.255008] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.263015] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.263021] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.270986] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.270990] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.454385] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.454389] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.462362] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.462366] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.470334] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.470339] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.478307] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.478311] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.502233] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.502238] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.510204] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.510208] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.526154] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.526159] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.542100] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.542104] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.558047] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.558051] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.566021] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.566025] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.573996] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.574000] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.589942] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.589946] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.892956] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.892960] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.924852] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.924856] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.948773] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.948777] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.964721] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  154.964725] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.164074] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.164079] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.172049] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.172053] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.180021] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.180024] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.187995] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.187999] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.195969] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.195973] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.203942] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.203946] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.211917] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.211921] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.219890] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.219894] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.227866] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.227870] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.235840] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.235845] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.243813] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.243817] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.251786] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.251789] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.259762] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.259765] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.299632] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.299636] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.307605] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.307609] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.339501] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.339505] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.347474] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.347478] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.379372] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.379376] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.387347] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.387351] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.395319] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.395323] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.403294] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.403297] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.411267] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.411271] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.419242] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.419245] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.427218] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.427223] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.435190] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.435195] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.443163] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.443167] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.451137] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.451141] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.459111] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.459115] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.467085] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.467088] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.475059] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.475063] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.483033] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.483036] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.498982] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.498985] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.506957] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.506960] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.514934] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.514938] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.530840] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.530844] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.666437] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.666441] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.690359] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.690363] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.706306] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.706310] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.714280] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.714285] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.722254] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.722258] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.738201] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.738205] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.762124] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.762128] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.786047] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.786051] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.913633] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.913636] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.937553] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.937557] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.969449] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.969453] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.985396] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  155.985400] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.033240] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.033244] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.081084] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.081088] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.097035] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.097039] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.136904] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.136908] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.192721] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.192725] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.304358] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.304362] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.312333] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.312337] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.320305] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.320308] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.336253] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.336257] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.551554] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.551557] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.567499] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.567503] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.647241] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.647245] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.663187] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.663191] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.934305] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.934310] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.942279] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.942283] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.950253] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.950257] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.958196] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.958203] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.966169] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.966174] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.974143] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.974147] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.982118] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.982123] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.998097] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  156.998101] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.205425] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.205429] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.213397] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.213401] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.221369] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.221373] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.229342] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.229346] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.237318] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.237322] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.253265] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.253269] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.261241] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.261245] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.269215] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.269219] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.277188] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.277192] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.420727] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.420732] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.428697] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.428702] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.444643] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.444647] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.468564] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.468569] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.476539] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.476543] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.516412] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.516417] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.548304] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.548308] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.564252] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.564256] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.620070] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.620074] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.683863] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.683867] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.715758] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.715762] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.723732] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.723736] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.739683] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.739687] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.747656] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.747659] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.755628] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.755632] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.779553] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.779557] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.787525] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.787529] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.843342] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.843346] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.867264] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.867268] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.875238] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.875241] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.907134] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.907138] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.931056] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  157.931060] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.034721] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.034725] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.042692] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.042696] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.066615] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.066619] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.074590] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.074594] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.082562] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.082566] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.090537] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.090541] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.098510] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.098514] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.106485] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.106489] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.122409] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.122415] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.202175] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.202179] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.210148] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.210152] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.226095] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.226099] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.242043] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.242047] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.321785] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.321789] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.345707] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.345711] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.353680] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.353684] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.696565] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.696569] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.704537] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.704541] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.720483] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.720487] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.752380] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.752384] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.776302] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.776306] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.784276] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.784280] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.824150] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.824154] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.903888] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  158.903891] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.039448] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.039453] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.055393] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.055397] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.063370] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.063373] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.079316] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.079320] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.103240] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.103244] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.119148] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.119152] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.159056] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.159060] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.175005] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.175010] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.182978] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.182982] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.206899] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.206903] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.214875] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.214879] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.230822] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.230826] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.246769] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.246773] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.270699] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.270704] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.278667] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.278671] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.485991] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.485995] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.493965] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.493969] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.501938] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.501942] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.509915] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.509919] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.517888] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.517892] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.525862] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.525866] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.533835] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.533839] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.541809] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.541814] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.549782] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.549786] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.996331] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  159.996336] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.107963] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.107967] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.123911] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.123915] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.395028] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.395032] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.418952] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.418956] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.602357] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.602362] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.634250] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.634254] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.642224] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.642228] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.698041] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.698045] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.841577] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.841581] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.849552] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.849556] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.873472] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.873476] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.913339] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  160.913343] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.439627] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.439632] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.447600] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.447604] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.455572] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.455575] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.463546] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.463550] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.471520] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.471524] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.479494] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.479498] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.638975] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.638979] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.646950] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.646954] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.694798] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.694802] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.718716] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.718719] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.750614] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.750618] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.806429] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.806433] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.854277] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.854282] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.878196] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.878200] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.902119] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.902124] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.949948] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  161.949952] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.348667] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.348673] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.404484] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.404489] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.420431] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.420435] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.436377] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.436381] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.715468] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.715472] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.747364] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.747367] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.763312] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  162.763316] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.225807] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.225811] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.241755] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.241759] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.257700] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.257704] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.265674] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.265678] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.297572] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.297576] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.656403] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.656408] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.736156] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.736164] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.744118] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.744122] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.752091] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.752095] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.760064] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.760067] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.768020] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.768028] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.776025] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.776032] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.783959] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.783967] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.791928] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.791933] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.799947] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.799954] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.807918] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.807927] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.815859] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.815867] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.823825] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.823831] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.831836] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.831845] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.839808] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.839813] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.847751] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.847759] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.855767] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.855774] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.863715] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.863725] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.871708] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.871716] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.879655] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.879666] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.887652] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.887661] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.895627] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.895632] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.903597] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.903601] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.911572] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.911576] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.919548] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.919552] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.927496] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.927503] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.935511] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.935518] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.943439] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.943446] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.951430] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.951437] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.959416] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.959420] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.967365] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.967372] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.975342] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.975352] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.983314] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.983324] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.991317] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.991324] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.999301] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  163.999312] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.007247] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.007255] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.015208] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.015215] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.023185] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.023195] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.031195] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.031202] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.039128] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.039136] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.047097] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.047102] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.055109] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.055124] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.063052] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.063057] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.071029] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.071036] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.079036] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.079044] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.087014] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.087021] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.094988] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.094997] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.102922] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.102930] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.110887] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.110892] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.118870] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.118877] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.126875] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.126883] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.134830] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.134838] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.142804] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.142812] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.150768] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.150779] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.158749] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.158758] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.166713] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.166721] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.174681] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.174687] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.182697] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.182705] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.190636] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.190643] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.198608] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.198615] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.206622] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.206629] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.214580] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.214588] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.222540] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.222550] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.238519] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.238527] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.246480] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.246485] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.254416] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.254420] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.262429] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.262433] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.270402] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.270406] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.278375] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.278379] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.286350] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.286354] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.294335] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.294344] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.302310] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.302318] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.310259] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.310266] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.318220] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.318228] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.326235] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.326241] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.334195] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.334199] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.342137] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.342143] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.350144] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.350150] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.358116] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.358120] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.366090] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.366094] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.374063] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.374067] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.382008] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.382013] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.390026] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.390033] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.397989] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.397996] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.405941] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.405948] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.852514] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.852519] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.860468] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.860475] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.908336] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.908342] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.916298] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.916302] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.924271] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.924275] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.932245] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.932249] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.940219] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.940223] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.948193] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.948197] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.956167] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.956171] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.964140] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.964144] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.972114] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.972118] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.980090] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.980094] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.988066] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.988071] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.996037] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  164.996041] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.004011] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.004015] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.011983] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.011987] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.019957] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.019961] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.027930] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.027933] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.035909] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.035913] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.043881] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.043885] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.067802] ====>[usb_hcd_submit_urb][1482] use count = 2 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]
[  165.067806] ====>[usb_hcd_giveback_urb][1620] use count = 1 pipe=1077970048 [urb=0xf58b6b80] [pid=0x4d64][devno=4]

^ permalink raw reply

* Re: [PATCH v2 0/3] mgmt:  read supported codecs
From: Johan Hedberg @ 2012-11-26 11:56 UTC (permalink / raw)
  To: Michael Knudsen; +Cc: linux-bluetooth, Michael Knudsen
In-Reply-To: <1353679170-3738-1-git-send-email-m.knudsen@samsung.com>

Hi Michael,

On Fri, Nov 23, 2012, Michael Knudsen wrote:
>   Bluetooth:  Add HCI Coding Format definitions
>   Bluetooth:  Support the read codecs operation

Since these are user space patches they should not be prefixed with
"Bluetooth". Also please just use one space after the colon. The
appropriate prefix for the first patch would be "lib" and for the second
one "mgmt".

>   Doco:  List the read codecs operation

The prefix should be "doc". And please remove the double spaces here as
well.

Johan

^ permalink raw reply

* [PATCH v2 2/2] formfactor: Remove not needed empty remove callback
From: Szymon Janc @ 2012-11-26 11:48 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Szymon Janc
In-Reply-To: <1353930524-22701-1-git-send-email-szymon.janc@tieto.com>

Remove callback is called only if it is not NULL so there is no need to
register empty callback function.
---
 plugins/formfactor.c |    5 -----
 1 file changed, 5 deletions(-)

diff --git a/plugins/formfactor.c b/plugins/formfactor.c
index 0e19ac6..1978f03 100644
--- a/plugins/formfactor.c
+++ b/plugins/formfactor.c
@@ -124,14 +124,9 @@ static int formfactor_probe(struct btd_adapter *adapter)
 	return 0;
 }
 
-static void formfactor_remove(struct btd_adapter *adapter)
-{
-}
-
 static struct btd_adapter_driver formfactor_driver = {
 	.name	= "formfactor",
 	.probe	= formfactor_probe,
-	.remove	= formfactor_remove,
 };
 
 static int formfactor_init(void)
-- 
1.7.9.5


^ permalink raw reply related


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox