* [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
* [PATCH v2 1/2] adaptername: Remove not needed empty remove callback
From: Szymon Janc @ 2012-11-26 11:48 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
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(-)
diff --git a/plugins/adaptername.c b/plugins/adaptername.c
index 353f11c..2013b7b 100644
--- a/plugins/adaptername.c
+++ b/plugins/adaptername.c
@@ -261,14 +261,9 @@ fail:
return FALSE;
}
-static void adaptername_remove(struct btd_adapter *adapter)
-{
-}
-
static struct btd_adapter_driver adaptername_driver = {
.name = "adaptername",
.probe = adaptername_probe,
- .remove = adaptername_remove,
};
static int adaptername_init(void)
--
1.7.9.5
^ permalink raw reply related
* Re: [RFC] doc: Split media transport volume into two parts
From: Luiz Augusto von Dentz @ 2012-11-26 11:40 UTC (permalink / raw)
To: Mikel Astiz
Cc: linux-bluetooth@vger.kernel.org, Luiz Augusto Von Dentz,
Mikel Astiz
In-Reply-To: <1353926791-8769-1-git-send-email-mikel.astiz.oss@gmail.com>
Hi Mikel,
On Mon, Nov 26, 2012 at 12:46 PM, Mikel Astiz <mikel.astiz.oss@gmail.com> wrote:
> From: Mikel Astiz <mikel.astiz@bmw-carit.de>
>
> Separate the input and output audio volumes in two independent
> properties in order to control both speaker and microphone gains while
> doing HSP/HFP.
> ---
> This property was introduced quite recently but never implemented. Shouldn't we split it into two separate properties?
>
> It wouldn't do much harm for the A2DP transports and it would be needed for HSP/HFP.
>
> doc/media-api.txt | 16 ++++++++++++----
> 1 file changed, 12 insertions(+), 4 deletions(-)
>
> diff --git a/doc/media-api.txt b/doc/media-api.txt
> index b4f2fc6..6515e5f 100644
> --- a/doc/media-api.txt
> +++ b/doc/media-api.txt
> @@ -375,10 +375,18 @@ Properties object Device [readonly]
>
> Possible Values: "HCI" or "PCM"
>
> - uint16 Volume [readwrite]
> + uint16 InputVolume [readwrite] [optional]
>
> - Optional. Indicates volume level of the transport,
> - this property is only writeable when the transport was
> - acquired by the sender.
> + Indicates volume level of the transport's incoming
> + audio stream, if any. This property is only writeable
> + when the transport was acquired by the sender.
> +
> + Possible Values: 0-127
> +
> + uint16 OutputVolume [readwrite] [optional]
> +
> + Indicates volume level of the transport's outgoing
> + audio stream, if any. This property is only writeable
> + when the transport was acquired by the sender.
>
> Possible Values: 0-127
> --
> 1.7.11.7
We could do this way or have specific property for each profile, e.g.
SpeakerGain/MicrophoneGain for HFP, because the scale is different
(0-15). If we do this generic then I think the value should be a
percentage (0-100%), iirc companies have some table mapping the volume
level to percentage due to volume not being linear but I guess we can
came up with something similar.
--
Luiz Augusto von Dentz
^ permalink raw reply
* Re: [PATCH 4/5] adaptername: Remove not needed empty remove callback
From: Johan Hedberg @ 2012-11-26 11:26 UTC (permalink / raw)
To: Szymon Janc; +Cc: Anderson Lizardo, linux-bluetooth@vger.kernel.org
In-Reply-To: <7243377.vN3q5Zuh5I@uw000953>
Hi Szymon,
On Mon, Nov 26, 2012, Szymon Janc 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've left this out for struct members at least in new code so I'd say
that it's not needed.
Johan
^ permalink raw reply
* Re: [PATCH 4/5] adaptername: Remove not needed empty remove callback
From: Szymon Janc @ 2012-11-26 10:52 UTC (permalink / raw)
To: Anderson Lizardo; +Cc: linux-bluetooth@vger.kernel.org
In-Reply-To: <CAJdJm_OLsmmxvLddeT2T=Xg427=ADNNdmfSRre5+jB-inTiGBw@mail.gmail.com>
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?
--
BR
Szymon Janc
^ permalink raw reply
* [RFC] doc: Split media transport volume into two parts
From: Mikel Astiz @ 2012-11-26 10:46 UTC (permalink / raw)
To: linux-bluetooth; +Cc: luiz.von.dentz, Mikel Astiz
From: Mikel Astiz <mikel.astiz@bmw-carit.de>
Separate the input and output audio volumes in two independent
properties in order to control both speaker and microphone gains while
doing HSP/HFP.
---
This property was introduced quite recently but never implemented. Shouldn't we split it into two separate properties?
It wouldn't do much harm for the A2DP transports and it would be needed for HSP/HFP.
doc/media-api.txt | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/doc/media-api.txt b/doc/media-api.txt
index b4f2fc6..6515e5f 100644
--- a/doc/media-api.txt
+++ b/doc/media-api.txt
@@ -375,10 +375,18 @@ Properties object Device [readonly]
Possible Values: "HCI" or "PCM"
- uint16 Volume [readwrite]
+ uint16 InputVolume [readwrite] [optional]
- Optional. Indicates volume level of the transport,
- this property is only writeable when the transport was
- acquired by the sender.
+ Indicates volume level of the transport's incoming
+ audio stream, if any. This property is only writeable
+ when the transport was acquired by the sender.
+
+ Possible Values: 0-127
+
+ uint16 OutputVolume [readwrite] [optional]
+
+ Indicates volume level of the transport's outgoing
+ audio stream, if any. This property is only writeable
+ when the transport was acquired by the sender.
Possible Values: 0-127
--
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 10:45 UTC (permalink / raw)
To: Szymon Janc; +Cc: linux-bluetooth
In-Reply-To: <1353920860-14912-4-git-send-email-szymon.janc@tieto.com>
Hi Szymon,
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.
Regards,
--
Anderson Lizardo
Instituto Nokia de Tecnologia - INdT
Manaus - Brazil
^ permalink raw reply
* [PATCH 5/5] formfactor: Remove not needed empty remove callback
From: Szymon Janc @ 2012-11-26 9:07 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
In-Reply-To: <1353920860-14912-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 | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/plugins/formfactor.c b/plugins/formfactor.c
index 0e19ac6..41f9c2a 100644
--- a/plugins/formfactor.c
+++ b/plugins/formfactor.c
@@ -124,14 +124,10 @@ 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,
+ .remove = NULL,
};
static int formfactor_init(void)
--
1.7.9.5
^ permalink raw reply related
* [PATCH 4/5] adaptername: Remove not needed empty remove callback
From: Szymon Janc @ 2012-11-26 9:07 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
In-Reply-To: <1353920860-14912-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/adaptername.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/plugins/adaptername.c b/plugins/adaptername.c
index 353f11c..745238a 100644
--- a/plugins/adaptername.c
+++ b/plugins/adaptername.c
@@ -261,14 +261,10 @@ fail:
return FALSE;
}
-static void adaptername_remove(struct btd_adapter *adapter)
-{
-}
-
static struct btd_adapter_driver adaptername_driver = {
.name = "adaptername",
.probe = adaptername_probe,
- .remove = adaptername_remove,
+ .remove = NULL,
};
static int adaptername_init(void)
--
1.7.9.5
^ permalink raw reply related
* [PATCH 3/5] adapter: Call driver remove callback when unregistering driver
From: Szymon Janc @ 2012-11-26 9:07 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
In-Reply-To: <1353920860-14912-1-git-send-email-szymon.janc@tieto.com>
This seems to be what plugins expect as only dbusoob explicite called
its remove function before unregistering adapter drivers.
This results in cleaner shutdown path:
Without patch:
bluetoothd[13563]: src/mgmt.c:mgmt_remove_uuid() index 0
bluetoothd[13563]: src/adapter.c:btd_adapter_unref() 0x606b2a0: ref=4
bluetoothd[13563]: src/adapter.c:btd_adapter_unref() 0x606b2a0: ref=3
bluetoothd[13563]: Stopping SDP server
bluetoothd[13563]: Exit
==13563==
==13563== HEAP SUMMARY:
==13563== in use at exit: 64,908 bytes in 395 blocks
==13563== total heap usage: 7,035 allocs, 6,640 frees, 4,432,371 bytes allocated
==13563==
==13563== LEAK SUMMARY:
==13563== definitely lost: 0 bytes in 0 blocks
==13563== indirectly lost: 0 bytes in 0 blocks
==13563== possibly lost: 17,429 bytes in 169 blocks
==13563== still reachable: 47,479 bytes in 226 blocks
==13563== suppressed: 0 bytes in 0 blocks
With patch:
bluetoothd[13301]: src/mgmt.c:mgmt_remove_uuid() index 0
bluetoothd[13301]: src/adapter.c:btd_adapter_unref() 0x606b2a0: ref=1
bluetoothd[13301]: src/adapter.c:btd_adapter_unref() 0x606b2a0: ref=0
bluetoothd[13301]: src/adapter.c:adapter_free() 0x606b2a0
bluetoothd[13301]: Stopping SDP server
bluetoothd[13301]: Exit
==13301==
==13301== HEAP SUMMARY:
==13301== in use at exit: 64,954 bytes in 348 blocks
==13301== total heap usage: 7,247 allocs, 6,899 frees, 4,625,672 bytes allocated
==13301==
==13301== LEAK SUMMARY:
==13301== definitely lost: 0 bytes in 0 blocks
==13301== indirectly lost: 0 bytes in 0 blocks
==13301== possibly lost: 17,334 bytes in 150 blocks
==13301== still reachable: 47,620 bytes in 198 blocks
==13301== suppressed: 0 bytes in 0 blocks
---
plugins/dbusoob.c | 2 --
src/adapter.c | 5 +++++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/plugins/dbusoob.c b/plugins/dbusoob.c
index e58b353..7d9a858 100644
--- a/plugins/dbusoob.c
+++ b/plugins/dbusoob.c
@@ -346,8 +346,6 @@ static void dbusoob_exit(void)
{
DBG("Cleanup dbusoob plugin");
- manager_foreach_adapter((adapter_cb) oob_remove, NULL);
-
btd_unregister_adapter_driver(&oob_driver);
}
diff --git a/src/adapter.c b/src/adapter.c
index 0d1dfea..163360f 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -3291,6 +3291,11 @@ int btd_register_adapter_driver(struct btd_adapter_driver *driver)
static void unload_driver(struct btd_adapter *adapter, gpointer data)
{
+ struct btd_adapter_driver *driver = data;
+
+ if (driver->remove)
+ driver->remove(adapter);
+
adapter->drivers = g_slist_remove(adapter->drivers, data);
}
--
1.7.9.5
^ permalink raw reply related
* [PATCH 2/5] service: Remove not needed initialization
From: Szymon Janc @ 2012-11-26 9:07 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
In-Reply-To: <1353920860-14912-1-git-send-email-szymon.janc@tieto.com>
serv_adapter is allocated with g_try_new0 so there is no need to
explicite initialize its pending_list to NULL.
---
plugins/service.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/plugins/service.c b/plugins/service.c
index d70c515..af24839 100644
--- a/plugins/service.c
+++ b/plugins/service.c
@@ -509,8 +509,6 @@ static int register_interface(const char *path, struct btd_adapter *adapter)
if (serv_adapter == NULL)
return -ENOMEM;
- serv_adapter->pending_list = NULL;
-
if (g_dbus_register_interface(btd_get_dbus_connection(),
path, SERVICE_INTERFACE,
service_methods, NULL, NULL, serv_adapter,
--
1.7.9.5
^ permalink raw reply related
* [PATCH 1/5] service: Fix not unreferencing adapter in case of error
From: Szymon Janc @ 2012-11-26 9:07 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Szymon Janc
If g_dbus_register_interface failed adapter reference was not dropped.
Move getting reference after succesful g_dbus_register_interface call.
---
plugins/service.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/service.c b/plugins/service.c
index ba7a693..d70c515 100644
--- a/plugins/service.c
+++ b/plugins/service.c
@@ -509,9 +509,6 @@ static int register_interface(const char *path, struct btd_adapter *adapter)
if (serv_adapter == NULL)
return -ENOMEM;
- if (adapter != NULL)
- serv_adapter->adapter = btd_adapter_ref(adapter);
-
serv_adapter->pending_list = NULL;
if (g_dbus_register_interface(btd_get_dbus_connection(),
@@ -520,13 +517,16 @@ static int register_interface(const char *path, struct btd_adapter *adapter)
path_unregister) == FALSE) {
error("D-Bus failed to register %s interface",
SERVICE_INTERFACE);
+
g_free(serv_adapter);
return -EIO;
}
DBG("Registered interface %s on path %s", SERVICE_INTERFACE, path);
- if (serv_adapter->adapter == NULL)
+ if (adapter != NULL)
+ serv_adapter->adapter = btd_adapter_ref(adapter);
+ else
serv_adapter_any = serv_adapter;
return 0;
--
1.7.9.5
^ permalink raw reply related
* RE: Sco issue:iogear dongle
From: Bluefrog @ 2012-11-25 11:07 UTC (permalink / raw)
To: 'Deepthi', linux-bluetooth
In-Reply-To: <50AB739F.4080202@globaledgesoft.com>
Well, firstly, u should provide HCIDump log, with "-X -t" option.
-----Original Message-----
From: linux-bluetooth-owner@vger.kernel.org
[mailto:linux-bluetooth-owner@vger.kernel.org] On Behalf Of Deepthi
Sent: 2012年11月20日 20:12
To: linux-bluetooth@vger.kernel.org
Subject: Sco issue:iogear dongle
Hello,
I 'm facing an issue regarding the sco data transfer in iogear dongle
4.0 in linux-3.2.5 kernel version. sco is connected with sco handle as 1,
but i could see no sco data transfer .
Please help,
--
Thanks & Regards,
Deepthi Elizabeth P V
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth"
in the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: [PATCH BlueZ 1/2] hog: Fix potencial segfault when sending a output report
From: Johan Hedberg @ 2012-11-23 21:28 UTC (permalink / raw)
To: Vinicius Costa Gomes; +Cc: linux-bluetooth
In-Reply-To: <1353697709-6497-1-git-send-email-vinicius.gomes@openbossa.org>
Hi Vinicius,
On Fri, Nov 23, 2012, Vinicius Costa Gomes wrote:
> As UHID is not notified when the device is disconnected, it may be
> possible that an output report is forwarded when the device is not
> connected, one example, would be when the caps lock key is pressed on
> another keyboard.
> ---
> profiles/input/hog_device.c | 3 +++
> 1 file changed, 3 insertions(+)
Both patches have been applied. Thanks.
Johan
^ permalink raw reply
* [RFC BlueZ 3/3] hog: Fix registering HoG devices without vendor information
From: Vinicius Costa Gomes @ 2012-11-23 20:30 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Vinicius Costa Gomes
In-Reply-To: <1353702632-7960-1-git-send-email-vinicius.gomes@openbossa.org>
We use the newly added support for notifying when the PNP ID
information is ready before registering the HoG device.
---
profiles/input/hog_device.c | 75 ++++++++++++++++++++++++++++++++-------------
1 file changed, 53 insertions(+), 22 deletions(-)
diff --git a/profiles/input/hog_device.c b/profiles/input/hog_device.c
index 0a5fb58..28e3b50 100644
--- a/profiles/input/hog_device.c
+++ b/profiles/input/hog_device.c
@@ -78,6 +78,8 @@ struct hog_device {
guint attioid;
struct gatt_primary *hog_primary;
GSList *reports;
+ uint8_t *reportmap;
+ ssize_t reportmap_size;
int uhid_fd;
gboolean prepend_id;
guint uhid_watch_id;
@@ -335,13 +337,54 @@ static void external_report_reference_cb(guint8 status, const guint8 *pdu,
external_service_char_cb, hogdev);
}
+static void create_uhid_device(struct hog_device *hogdev, uint8_t *reportmap,
+ uint16_t rsize)
+{
+ struct uhid_event ev;
+ uint16_t vendor_src, vendor, product, version;
+
+ vendor_src = btd_device_get_vendor_src(hogdev->device);
+ vendor = btd_device_get_vendor(hogdev->device);
+ product = btd_device_get_product(hogdev->device);
+ version = btd_device_get_version(hogdev->device);
+ DBG("DIS information: vendor_src=0x%X, vendor=0x%X, product=0x%X, "
+ "version=0x%X", vendor_src, vendor, product, version);
+
+ /* create uHID device */
+ memset(&ev, 0, sizeof(ev));
+ ev.type = UHID_CREATE;
+ strcpy((char *) ev.u.create.name, "bluez-hog-device");
+ ev.u.create.vendor = vendor;
+ ev.u.create.product = product;
+ ev.u.create.version = version;
+ ev.u.create.country = hogdev->bcountrycode;
+ ev.u.create.bus = BUS_BLUETOOTH;
+ ev.u.create.rd_data = reportmap;
+ ev.u.create.rd_size = rsize;
+
+ if (write(hogdev->uhid_fd, &ev, sizeof(ev)) < 0)
+ error("Failed to create uHID device: %s", strerror(errno));
+}
+
+static void pnpid_ready(gpointer user_data)
+{
+ struct hog_device *hogdev = user_data;
+
+ if (hogdev->reportmap == NULL)
+ return;
+
+ create_uhid_device(hogdev, hogdev->reportmap, hogdev->reportmap_size);
+
+ g_free(hogdev->reportmap);
+ hogdev->reportmap = NULL;
+ hogdev->reportmap_size = 0;
+}
+
static void report_map_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
gpointer user_data)
{
struct hog_device *hogdev = user_data;
uint8_t value[HOG_REPORT_MAP_MAX_SIZE];
- struct uhid_event ev;
- uint16_t vendor_src, vendor, product, version;
ssize_t vlen;
int i;
@@ -373,27 +416,14 @@ static void report_map_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
}
}
- vendor_src = btd_device_get_vendor_src(hogdev->device);
- vendor = btd_device_get_vendor(hogdev->device);
- product = btd_device_get_product(hogdev->device);
- version = btd_device_get_version(hogdev->device);
- DBG("DIS information: vendor_src=0x%X, vendor=0x%X, product=0x%X, "
- "version=0x%X", vendor_src, vendor, product, version);
-
- /* create uHID device */
- memset(&ev, 0, sizeof(ev));
- ev.type = UHID_CREATE;
- strcpy((char *) ev.u.create.name, "bluez-hog-device");
- ev.u.create.vendor = vendor;
- ev.u.create.product = product;
- ev.u.create.version = version;
- ev.u.create.country = hogdev->bcountrycode;
- ev.u.create.bus = BUS_BLUETOOTH;
- ev.u.create.rd_data = value;
- ev.u.create.rd_size = vlen;
+ if (btd_device_register_pnpid_notifier(hogdev->device,
+ pnpid_ready, hogdev)) {
+ hogdev->reportmap = g_memdup(value, vlen);
+ hogdev->reportmap_size = vlen;
+ return;
+ }
- if (write(hogdev->uhid_fd, &ev, sizeof(ev)) < 0)
- error("Failed to create uHID device: %s", strerror(errno));
+ create_uhid_device(hogdev, value, vlen);
}
static void info_read_cb(guint8 status, const guint8 *pdu, guint16 plen,
@@ -706,6 +736,7 @@ static void hog_device_free(struct hog_device *hogdev)
btd_device_unref(hogdev->device);
g_slist_free_full(hogdev->reports, report_free);
g_free(hogdev->hog_primary);
+ g_free(hogdev->reportmap);
g_free(hogdev);
}
--
1.8.0
^ permalink raw reply related
* [RFC BlueZ 2/3] device: Add a way to be notified that PNP information is present
From: Vinicius Costa Gomes @ 2012-11-23 20:30 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Vinicius Costa Gomes
In-Reply-To: <1353702632-7960-1-git-send-email-vinicius.gomes@openbossa.org>
It will be used inside the HoG profile to only create the uhid device
after the PNP information is present, for the HID subsystem may use the
vendor and product ids to load the correct module.
btd_device_register_pnpid_notifier() will return 'false' when the
information is already present.
---
src/device.c | 41 +++++++++++++++++++++++++++++++++++++++++
src/device.h | 5 +++++
2 files changed, 46 insertions(+)
diff --git a/src/device.c b/src/device.c
index a196af4..ec890fa 100644
--- a/src/device.c
+++ b/src/device.c
@@ -132,6 +132,11 @@ struct attio_data {
gpointer user_data;
};
+struct pnpid_notifier {
+ pnpid_ready_func func;
+ void *user_data;
+};
+
typedef void (*attio_error_cb) (const GError *gerr, gpointer user_data);
typedef void (*attio_success_cb) (gpointer user_data);
@@ -195,6 +200,8 @@ struct btd_device {
GIOChannel *att_io;
guint cleanup_id;
guint store_id;
+
+ GSList *pnpid_notifiers;
};
static uint16_t uuid_list[] = {
@@ -347,6 +354,7 @@ static void device_free(gpointer user_data)
g_slist_free_full(device->primaries, g_free);
g_slist_free_full(device->attios, g_free);
g_slist_free_full(device->attios_offline, g_free);
+ g_slist_free_full(device->pnpid_notifiers, g_free);
attio_cleanup(device);
@@ -4105,10 +4113,43 @@ void btd_device_set_pnpid(struct btd_device *device, uint8_t vendor_id_src,
uint16_t vendor_id, uint16_t product_id,
uint16_t product_ver)
{
+ GSList *l;
+
device_set_vendor(device, vendor_id);
device_set_vendor_src(device, vendor_id_src);
device_set_product(device, product_id);
device_set_version(device, product_ver);
store_device_info(device);
+
+ for (l = device->pnpid_notifiers; l; l = l->next) {
+ struct pnpid_notifier *notifier = l->data;
+
+ notifier->func(notifier->user_data);
+ g_free(notifier);
+ }
+
+ g_slist_free_full(device->pnpid_notifiers, g_free);
+ device->pnpid_notifiers = NULL;
+}
+
+bool btd_device_register_pnpid_notifier(struct btd_device *device,
+ pnpid_ready_func notify, void *user_data)
+{
+ struct pnpid_notifier *notifier;
+
+ if (btd_device_get_vendor(device) ||
+ btd_device_get_vendor_src(device) ||
+ btd_device_get_product(device) ||
+ btd_device_get_version(device))
+ return false;
+
+ notifier = g_new0(struct pnpid_notifier, 1);
+
+ notifier->func = notify;
+ notifier->user_data = user_data;
+
+ device->pnpid_notifiers = g_slist_append(device->pnpid_notifiers,
+ notifier);
+ return true;
}
diff --git a/src/device.h b/src/device.h
index 703dfcf..914ee38 100644
--- a/src/device.h
+++ b/src/device.h
@@ -119,4 +119,9 @@ int device_unblock(struct btd_device *device, gboolean silent,
void btd_device_set_pnpid(struct btd_device *device, uint8_t vendor_id_src,
uint16_t vendor_id, uint16_t product_id,
uint16_t product_ver);
+
+typedef void (*pnpid_ready_func) (void *user_data);
+
+bool btd_device_register_pnpid_notifier(struct btd_device *device,
+ pnpid_ready_func notify, void *user_data);
GIOChannel *device_att_connect(gpointer user_data);
--
1.8.0
^ permalink raw reply related
* [RFC BlueZ 1/3] device: Add btd_ prefix to device_set_pnpid()
From: Vinicius Costa Gomes @ 2012-11-23 20:30 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Vinicius Costa Gomes
In-Reply-To: <1353702632-7960-1-git-send-email-vinicius.gomes@openbossa.org>
As device_set_pnpid() is used inside a plugin it should have the btd_
prefix.
---
profiles/deviceinfo/deviceinfo.c | 2 +-
src/device.c | 4 ++--
src/device.h | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/profiles/deviceinfo/deviceinfo.c b/profiles/deviceinfo/deviceinfo.c
index 9910533..da27df8 100644
--- a/profiles/deviceinfo/deviceinfo.c
+++ b/profiles/deviceinfo/deviceinfo.c
@@ -106,7 +106,7 @@ static void read_pnpid_cb(guint8 status, const guint8 *pdu, guint16 len,
return;
}
- device_set_pnpid(ch->d->dev, value[0], att_get_u16(&value[1]),
+ btd_device_set_pnpid(ch->d->dev, value[0], att_get_u16(&value[1]),
att_get_u16(&value[3]), att_get_u16(&value[5]));
}
diff --git a/src/device.c b/src/device.c
index f0223c8..a196af4 100644
--- a/src/device.c
+++ b/src/device.c
@@ -2349,7 +2349,7 @@ static void update_bredr_services(struct browse_req *req, sdp_list_t *recs)
version = pdlist ? pdlist->val.uint16 : 0x0000;
if (source || vendor || product || version)
- device_set_pnpid(device, source, vendor,
+ btd_device_set_pnpid(device, source, vendor,
product, version);
}
@@ -4101,7 +4101,7 @@ gboolean btd_device_remove_attio_callback(struct btd_device *device, guint id)
return TRUE;
}
-void device_set_pnpid(struct btd_device *device, uint8_t vendor_id_src,
+void btd_device_set_pnpid(struct btd_device *device, uint8_t vendor_id_src,
uint16_t vendor_id, uint16_t product_id,
uint16_t product_ver)
{
diff --git a/src/device.h b/src/device.h
index 3715698..703dfcf 100644
--- a/src/device.h
+++ b/src/device.h
@@ -116,7 +116,7 @@ void btd_device_unref(struct btd_device *device);
int device_block(struct btd_device *device, gboolean update_only);
int device_unblock(struct btd_device *device, gboolean silent,
gboolean update_only);
-void device_set_pnpid(struct btd_device *device, uint8_t vendor_id_src,
+void btd_device_set_pnpid(struct btd_device *device, uint8_t vendor_id_src,
uint16_t vendor_id, uint16_t product_id,
uint16_t product_ver);
GIOChannel *device_att_connect(gpointer user_data);
--
1.8.0
^ permalink raw reply related
* [RFC BlueZ 0/3] Only create the uhid device when PNP info is available
From: Vinicius Costa Gomes @ 2012-11-23 20:30 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Vinicius Costa Gomes
Hi,
Some input drivers require that the input device is created with the
correct product and vendor ids.
So we have a race condition between the DIS (Device Information)
profile and the HoG profile, this series aims to solve this particular
problem by adding a mechanism to notify the interested parties that
PNP information is ready, the HoG plugin uses this to only create the
uhid device when that information arrives.
Patch 1/3 should be considered for inclusion even if this idea doesn't
make sense.
Cheers,
Vinicius Costa Gomes (3):
device: Add btd_ prefix to device_set_pnpid()
device: Add a way to be notified that PNP information is present
hog: Fix registering HoG devices without vendor information
profiles/deviceinfo/deviceinfo.c | 2 +-
profiles/input/hog_device.c | 75 ++++++++++++++++++++++++++++------------
src/device.c | 45 ++++++++++++++++++++++--
src/device.h | 7 +++-
4 files changed, 103 insertions(+), 26 deletions(-)
--
1.8.0
^ permalink raw reply
* [PATCH BlueZ 2/2] hog: Fix output report
From: Vinicius Costa Gomes @ 2012-11-23 19:08 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Vinicius Costa Gomes
In-Reply-To: <1353697709-6497-1-git-send-email-vinicius.gomes@openbossa.org>
Even if we receive the output report with the report id included, we
must send the output report without the report id, as the remote side
is able to infer it using the handle.
---
profiles/input/hog_device.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/profiles/input/hog_device.c b/profiles/input/hog_device.c
index 994437f..0a5fb58 100644
--- a/profiles/input/hog_device.c
+++ b/profiles/input/hog_device.c
@@ -549,8 +549,13 @@ static void forward_report(struct hog_device *hogdev,
int size;
guint type;
- data = ev->u.output.data;
- size = ev->u.output.size;
+ if (hogdev->prepend_id) {
+ data = ev->u.output.data + 1;
+ size = ev->u.output.size - 1;
+ } else {
+ data = ev->u.output.data;
+ size = ev->u.output.size;
+ }
switch (ev->type) {
case UHID_OUTPUT:
--
1.8.0
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox