All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
@ 2010-04-28 23:28 Elina Pasheva
  2010-05-02  1:08 ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Elina Pasheva @ 2010-04-28 23:28 UTC (permalink / raw)
  To: dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f, davem-fT/PcQaiUtIeIZ0/mPfg9Q
  Cc: rfiler-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8,
	epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA

Subject: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
From: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>

The following patch adds the initiation of the sync sequence to
"sierra_net_bind()". If this step is omitted, the modem will never sync up
with the host and it will not be possible to establish a data connection.
This is a high priority patch.

This patch has been checked against net-2.6 tree.
Signed-off-by: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
Signed-off-by: Rory Filer <rfiler-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
Tested-by: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
---
 drivers/net/usb/sierra_net.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/net/usb/sierra_net.c b/drivers/net/usb/sierra_net.c
index a44f9e0..f1942d6 100644
--- a/drivers/net/usb/sierra_net.c
+++ b/drivers/net/usb/sierra_net.c
@@ -789,6 +789,9 @@ static int sierra_net_bind(struct usbnet *dev, struct usb_interface *intf)
 	/* prepare sync message from template */
 	memcpy(priv->sync_msg, sync_tmplate, sizeof(priv->sync_msg));
 
+	/* initiate the sync sequence */
+	sierra_net_dosync(dev);
+
 	return 0;
 }
 
-- 
1.5.4.3



--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
  2010-04-28 23:28 [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver Elina Pasheva
@ 2010-05-02  1:08 ` David Miller
  2010-05-02  5:53   ` Elina Pasheva
  2010-05-04 20:18   ` Elina Pasheva
  0 siblings, 2 replies; 6+ messages in thread
From: David Miller @ 2010-05-02  1:08 UTC (permalink / raw)
  To: epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8
  Cc: dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f,
	rfiler-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA

From: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
Date: Wed, 28 Apr 2010 16:28:24 -0700

> Subject: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
> From: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
> 
> The following patch adds the initiation of the sync sequence to
> "sierra_net_bind()". If this step is omitted, the modem will never sync up
> with the host and it will not be possible to establish a data connection.
> This is a high priority patch.
> 
> This patch has been checked against net-2.6 tree.
> Signed-off-by: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
> Signed-off-by: Rory Filer <rfiler-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
> Tested-by: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
  2010-05-02  1:08 ` David Miller
@ 2010-05-02  5:53   ` Elina Pasheva
  2010-05-04 20:18   ` Elina Pasheva
  1 sibling, 0 replies; 6+ messages in thread
From: Elina Pasheva @ 2010-05-02  5:53 UTC (permalink / raw)
  To: David Miller; +Cc: dbrownell, Rory Filer, linux-usb, netdev


> On Saturday, May 01, 2010 6:08 PM David Miller wrote:

>>From: Elina Pasheva <epasheva@sierrawireless.com>
>>Date: Wed, 28 Apr 2010 16:28:24 -0700

>> Subject: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
>> From: Elina Pasheva <epasheva@sierrawireless.com>
>>
>> The following patch adds the initiation of the sync sequence to
>> "sierra_net_bind()". If this step is omitted, the modem will never sync up
>> with the host and it will not be possible to establish a data connection.
>> This is a high priority patch.
>>
>> This patch has been checked against net-2.6 tree.
>> Signed-off-by: Elina Pasheva <epasheva@sierrawireless.com>
>> Signed-off-by: Rory Filer <rfiler@sierrawireless.com>
>> Tested-by: Elina Pasheva <epasheva@sierrawireless.com>

>Applied.

Thank you very much, David!
Elina



^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
  2010-05-02  1:08 ` David Miller
  2010-05-02  5:53   ` Elina Pasheva
@ 2010-05-04 20:18   ` Elina Pasheva
  2010-05-04 21:53     ` David Miller
  1 sibling, 1 reply; 6+ messages in thread
From: Elina Pasheva @ 2010-05-04 20:18 UTC (permalink / raw)
  To: David Miller, dbrownell; +Cc: epasheva, Rory Filer, linux-usb, netdev

>> On Saturday, May 01, 2010 6:08 PM David Miller wrote:

>>>From: Elina Pasheva <epasheva@sierrawireless.com>
>>>Date: Wed, 28 Apr 2010 16:28:24 -0700

>>> Subject: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
>>> From: Elina Pasheva <epasheva@sierrawireless.com>
>>>
>>> The following patch adds the initiation of the sync sequence to
>>> "sierra_net_bind()". If this step is omitted, the modem will never sync up
>>> with the host and it will not be possible to establish a data connection.
>>> This is a high priority patch.
>>>
>>> This patch has been checked against net-2.6 tree.
>>> Signed-off-by: Elina Pasheva <epasheva@sierrawireless.com>
>>> Signed-off-by: Rory Filer <rfiler@sierrawireless.com>
>>> Tested-by: Elina Pasheva <epasheva@sierrawireless.com>

>>Applied.

>Thank you very much, David!
>Elina

Hi David,
What are the chances of this patch to be in the kernel-2.6.34 release?
Without this patch the driver sierra_net (currently in kernel-2.6.34-rc6) 
will not work.

Thank you,
Elina





^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
  2010-05-04 20:18   ` Elina Pasheva
@ 2010-05-04 21:53     ` David Miller
       [not found]       ` <20100504.145357.111558943.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2010-05-04 21:53 UTC (permalink / raw)
  To: epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8
  Cc: dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f,
	rfiler-usJ8hg9QsBLWpu6QEFMNjNBPR1lH4CV8,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA

From: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
Date: Tue, 4 May 2010 13:18:22 -0700

> What are the chances of this patch to be in the kernel-2.6.34 release?
> Without this patch the driver sierra_net (currently in kernel-2.6.34-rc6) 
> will not work.

It's sitting in my net-2.6 tree which means it will go to Linus the
next time I send him a pull request.  I have no idea when that will
be, but hopefully it will be soon.
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver
       [not found]       ` <20100504.145357.111558943.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
@ 2010-05-04 22:15         ` Elina Pasheva
  0 siblings, 0 replies; 6+ messages in thread
From: Elina Pasheva @ 2010-05-04 22:15 UTC (permalink / raw)
  To: David Miller
  Cc: dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f, Rory Filer,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA

On Tue, 2010-05-04 at 14:53 -0700, David Miller wrote:
> From: Elina Pasheva <epasheva-ywE8TTl5eJHWpu6QEFMNjNBPR1lH4CV8@public.gmane.org>
> Date: Tue, 4 May 2010 13:18:22 -0700
> 
> > What are the chances of this patch to be in the kernel-2.6.34 release?
> > Without this patch the driver sierra_net (currently in kernel-2.6.34-rc6) 
> > will not work.
> 
> It's sitting in my net-2.6 tree which means it will go to Linus the
> next time I send him a pull request.  I have no idea when that will
> be, but hopefully it will be soon.
> 
Sounds good. Thank you, David.
Elina

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-05-04 22:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-28 23:28 [PATCH 1/1] net/usb: initiate sync sequence in sierra_net.c driver Elina Pasheva
2010-05-02  1:08 ` David Miller
2010-05-02  5:53   ` Elina Pasheva
2010-05-04 20:18   ` Elina Pasheva
2010-05-04 21:53     ` David Miller
     [not found]       ` <20100504.145357.111558943.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2010-05-04 22:15         ` Elina Pasheva

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.