netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
@ 2013-05-01 18:01 Dan Williams
       [not found] ` <1367431305.12353.8.camel-wKZy7rqYPVb5EHUCmHmTqw@public.gmane.org>
  2013-05-01 20:24 ` Dan Williams
  0 siblings, 2 replies; 11+ messages in thread
From: Dan Williams @ 2013-05-01 18:01 UTC (permalink / raw)
  To: linux-usb-u79uwXL29TY76Z2rM5mHXA
  Cc: Bjørn Mork, Network Development, Greg KH,
	stable-u79uwXL29TY76Z2rM5mHXA, Matthias Urlichs,
	dagofthedofg-Re5JQEeQqe8AvxtiuMwx3w

A rebranded Novatel E371 for AT&T's LTE bands.

Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Signed-off-by: Dan Williams <dcbw-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
See https://bugzilla.redhat.com/show_bug.cgi?id=955426

diff --git a/drivers/net/usb/cdc_ether.c b/drivers/net/usb/cdc_ether.c
index 57136dc..299c53b 100644
--- a/drivers/net/usb/cdc_ether.c
+++ b/drivers/net/usb/cdc_ether.c
@@ -615,6 +615,13 @@ static const struct usb_device_id	products [] = {
 	.driver_info = 0,
 },
 
+/* Dell Wireless 5804 (Novatel E371) - handled by qmi_wwan */
+{
+	USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, 0x819b, USB_CLASS_COMM,
+			USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
+	.driver_info = 0,
+},
+
 /* AnyDATA ADU960S - handled by qmi_wwan */
 {
 	USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a, USB_CLASS_COMM,
diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
index 968d5d5..38734fd 100644
--- a/drivers/net/usb/qmi_wwan.c
+++ b/drivers/net/usb/qmi_wwan.c
@@ -392,6 +392,13 @@ static const struct usb_device_id products[] = {
 					      USB_CDC_PROTO_NONE),
 		.driver_info        = (unsigned long)&qmi_wwan_info,
 	},
+	{	/* Dell Wireless 5804 (Novatel E371) */
+		USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x819b,
+					      USB_CLASS_COMM,
+					      USB_CDC_SUBCLASS_ETHERNET,
+					      USB_CDC_PROTO_NONE),
+		.driver_info        = (unsigned long)&qmi_wwan_info,
+	},
 	{	/* ADU960S */
 		USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a,
 					      USB_CLASS_COMM,
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
index 558adfc..569caf6 100644
--- a/drivers/usb/serial/option.c
+++ b/drivers/usb/serial/option.c
@@ -196,6 +196,7 @@ static void option_instat_callback(struct urb *urb);
 
 #define DELL_PRODUCT_5800_MINICARD_VZW		0x8195  /* Novatel E362 */
 #define DELL_PRODUCT_5800_V2_MINICARD_VZW	0x8196  /* Novatel E362 */
+#define DELL_PRODUCT_5804_MINICARD_ATT		0x819b  /* Novatel E371 */
 
 #define KYOCERA_VENDOR_ID			0x0c88
 #define KYOCERA_PRODUCT_KPC650			0x17da
@@ -770,6 +771,7 @@ static const struct usb_device_id option_ids[] = {
 	{ USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_VZW) }, 	/* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
 	{ USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_MINICARD_VZW, 0xff, 0xff, 0xff) },
 	{ USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_V2_MINICARD_VZW, 0xff, 0xff, 0xff) },
+	{ USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5804_MINICARD_ATT, 0xff, 0xff, 0xff) },
 	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },	/* ADU-E100, ADU-310 */
 	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
 	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) },


--
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] 11+ messages in thread

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
       [not found] ` <1367431305.12353.8.camel-wKZy7rqYPVb5EHUCmHmTqw@public.gmane.org>
@ 2013-05-01 18:33   ` Bjørn Mork
  2013-05-01 18:42     ` David Miller
  2013-05-01 20:03     ` Dan Williams
  0 siblings, 2 replies; 11+ messages in thread
From: Bjørn Mork @ 2013-05-01 18:33 UTC (permalink / raw)
  To: Dan Williams
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA, Network Development, Greg KH,
	stable-u79uwXL29TY76Z2rM5mHXA, Matthias Urlichs,
	dagofthedofg-Re5JQEeQqe8AvxtiuMwx3w

Dan Williams <dcbw-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> writes:

> A rebranded Novatel E371 for AT&T's LTE bands.

I don't think we're handling the Novatel branded E371 yet?  I tried
googling for ID of that, but were unable to find it.  I guess you don't
know either...  Well, nothing we can do about that until someone reports
it.

For the qmi_wwan part:
Acked-by: Bjørn Mork <bjorn-yOkvZcmFvRU@public.gmane.org>


> diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
> index 558adfc..569caf6 100644
> --- a/drivers/usb/serial/option.c
> +++ b/drivers/usb/serial/option.c

Combining net and usb patches in the same commit is probably not wise?



Bjørn
--
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] 11+ messages in thread

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 18:33   ` Bjørn Mork
@ 2013-05-01 18:42     ` David Miller
  2013-05-01 20:04       ` Dan Williams
  2013-05-01 20:03     ` Dan Williams
  1 sibling, 1 reply; 11+ messages in thread
From: David Miller @ 2013-05-01 18:42 UTC (permalink / raw)
  To: bjorn; +Cc: dcbw, linux-usb, netdev, gregkh, stable, smurf, dagofthedofg

From: Bjørn Mork <bjorn@mork.no>
Date: Wed, 01 May 2013 20:33:10 +0200

> Dan Williams <dcbw@redhat.com> writes:
> 
>> A rebranded Novatel E371 for AT&T's LTE bands.
> 
> I don't think we're handling the Novatel branded E371 yet?  I tried
> googling for ID of that, but were unable to find it.  I guess you don't
> know either...  Well, nothing we can do about that until someone reports
> it.
> 
> For the qmi_wwan part:
> Acked-by: Bjørn Mork <bjorn@mork.no>
> 
> 
>> diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
>> index 558adfc..569caf6 100644
>> --- a/drivers/usb/serial/option.c
>> +++ b/drivers/usb/serial/option.c
> 
> Combining net and usb patches in the same commit is probably not wise?

Yes, this causes problems, please re-submit the networking portion all
by itself.

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

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 18:33   ` Bjørn Mork
  2013-05-01 18:42     ` David Miller
@ 2013-05-01 20:03     ` Dan Williams
  2013-05-01 20:19       ` Bjørn Mork
  1 sibling, 1 reply; 11+ messages in thread
From: Dan Williams @ 2013-05-01 20:03 UTC (permalink / raw)
  To: Bjørn Mork
  Cc: linux-usb, Network Development, Greg KH, stable,
	Matthias Urlichs, dagofthedofg

On Wed, 2013-05-01 at 20:33 +0200, Bjørn Mork wrote:
> Dan Williams <dcbw@redhat.com> writes:
> 
> > A rebranded Novatel E371 for AT&T's LTE bands.
> 
> I don't think we're handling the Novatel branded E371 yet?  I tried
> googling for ID of that, but were unable to find it.  I guess you don't
> know either...  Well, nothing we can do about that until someone reports
> it.

See the referenced bug report which prompted this:

https://bugzilla.redhat.com/show_bug.cgi?id=955426

It's definitely QMI capable.

Dan

> For the qmi_wwan part:
> Acked-by: Bjørn Mork <bjorn@mork.no>
> 
> 
> > diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
> > index 558adfc..569caf6 100644
> > --- a/drivers/usb/serial/option.c
> > +++ b/drivers/usb/serial/option.c
> 
> Combining net and usb patches in the same commit is probably not wise?
> 
> 
> 
> Bjørn
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" 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	[flat|nested] 11+ messages in thread

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 18:42     ` David Miller
@ 2013-05-01 20:04       ` Dan Williams
  0 siblings, 0 replies; 11+ messages in thread
From: Dan Williams @ 2013-05-01 20:04 UTC (permalink / raw)
  To: David Miller
  Cc: bjorn, linux-usb, netdev, gregkh, stable, smurf, dagofthedofg

On Wed, 2013-05-01 at 14:42 -0400, David Miller wrote:
> From: Bjørn Mork <bjorn@mork.no>
> Date: Wed, 01 May 2013 20:33:10 +0200
> 
> > Dan Williams <dcbw@redhat.com> writes:
> > 
> >> A rebranded Novatel E371 for AT&T's LTE bands.
> > 
> > I don't think we're handling the Novatel branded E371 yet?  I tried
> > googling for ID of that, but were unable to find it.  I guess you don't
> > know either...  Well, nothing we can do about that until someone reports
> > it.
> > 
> > For the qmi_wwan part:
> > Acked-by: Bjørn Mork <bjorn@mork.no>
> > 
> > 
> >> diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
> >> index 558adfc..569caf6 100644
> >> --- a/drivers/usb/serial/option.c
> >> +++ b/drivers/usb/serial/option.c
> > 
> > Combining net and usb patches in the same commit is probably not wise?
> 
> Yes, this causes problems, please re-submit the networking portion all
> by itself.

Will do.

Dan

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

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 20:03     ` Dan Williams
@ 2013-05-01 20:19       ` Bjørn Mork
  2013-05-01 20:22         ` dag dg
       [not found]         ` <CAO2Qn5m08QOBJfuvR1xAF9msw2WX0mAT64=s8VmXuO41h9dkWg@mail.gmail.com>
  0 siblings, 2 replies; 11+ messages in thread
From: Bjørn Mork @ 2013-05-01 20:19 UTC (permalink / raw)
  To: Dan Williams
  Cc: linux-usb, Network Development, Greg KH, stable,
	Matthias Urlichs, dagofthedofg

Dan Williams <dcbw@redhat.com> writes:

> On Wed, 2013-05-01 at 20:33 +0200, Bjørn Mork wrote:
>> Dan Williams <dcbw@redhat.com> writes:
>> 
>> > A rebranded Novatel E371 for AT&T's LTE bands.
>> 
>> I don't think we're handling the Novatel branded E371 yet?  I tried
>> googling for ID of that, but were unable to find it.  I guess you don't
>> know either...  Well, nothing we can do about that until someone reports
>> it.
>
> See the referenced bug report which prompted this:
>
> https://bugzilla.redhat.com/show_bug.cgi?id=955426
>
> It's definitely QMI capable.

Yes, absolutely.

I just assumed the E371 exists with a Novatel vendor ID as well. Which
we could and should also add, if we only knew what the product ID is.

But it wasn't my intention to question the addition of the Dell
rebranded E371. There's absolutely no need to let that wait. Sorry for
being unclear.  I am not communicating well today...




Bjørn

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

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 20:19       ` Bjørn Mork
@ 2013-05-01 20:22         ` dag dg
       [not found]         ` <CAO2Qn5m08QOBJfuvR1xAF9msw2WX0mAT64=s8VmXuO41h9dkWg@mail.gmail.com>
  1 sibling, 0 replies; 11+ messages in thread
From: dag dg @ 2013-05-01 20:22 UTC (permalink / raw)
  To: Bjørn Mork
  Cc: Dan Williams, linux-usb, Network Development, Greg KH, stable,
	Matthias Urlichs

Vendor ID is 413c Product ID is 819b

On Wed, May 1, 2013 at 3:19 PM, Bjørn Mork <bjorn@mork.no> wrote:
> Dan Williams <dcbw@redhat.com> writes:
>
>> On Wed, 2013-05-01 at 20:33 +0200, Bjørn Mork wrote:
>>> Dan Williams <dcbw@redhat.com> writes:
>>>
>>> > A rebranded Novatel E371 for AT&T's LTE bands.
>>>
>>> I don't think we're handling the Novatel branded E371 yet?  I tried
>>> googling for ID of that, but were unable to find it.  I guess you don't
>>> know either...  Well, nothing we can do about that until someone reports
>>> it.
>>
>> See the referenced bug report which prompted this:
>>
>> https://bugzilla.redhat.com/show_bug.cgi?id=955426
>>
>> It's definitely QMI capable.
>
> Yes, absolutely.
>
> I just assumed the E371 exists with a Novatel vendor ID as well. Which
> we could and should also add, if we only knew what the product ID is.
>
> But it wasn't my intention to question the addition of the Dell
> rebranded E371. There's absolutely no need to let that wait. Sorry for
> being unclear.  I am not communicating well today...
>
>
>
>
> Bjørn
>

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

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 18:01 [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card Dan Williams
       [not found] ` <1367431305.12353.8.camel-wKZy7rqYPVb5EHUCmHmTqw@public.gmane.org>
@ 2013-05-01 20:24 ` Dan Williams
  1 sibling, 0 replies; 11+ messages in thread
From: Dan Williams @ 2013-05-01 20:24 UTC (permalink / raw)
  To: linux-usb
  Cc: Bjørn Mork, Network Development, Greg KH, stable,
	Matthias Urlichs, dagofthedofg

On Wed, 2013-05-01 at 13:01 -0500, Dan Williams wrote:
> A rebranded Novatel E371 for AT&T's LTE bands.
> 
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Dan Williams <dcbw@redhat.com>

Skip this patch as I'll split it up, and it's also whitespace damaged to
to an Evolution issue I'm sorting out.  Will resubmit only the net part
to netdev, and only the USB part to linux-usb.

Dan

> ---
> See https://bugzilla.redhat.com/show_bug.cgi?id=955426
> 
> diff --git a/drivers/net/usb/cdc_ether.c b/drivers/net/usb/cdc_ether.c
> index 57136dc..299c53b 100644
> --- a/drivers/net/usb/cdc_ether.c
> +++ b/drivers/net/usb/cdc_ether.c
> @@ -615,6 +615,13 @@ static const struct usb_device_id	products [] = {
>  	.driver_info = 0,
>  },
>  
> +/* Dell Wireless 5804 (Novatel E371) - handled by qmi_wwan */
> +{
> +	USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, 0x819b, USB_CLASS_COMM,
> +			USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
> +	.driver_info = 0,
> +},
> +
>  /* AnyDATA ADU960S - handled by qmi_wwan */
>  {
>  	USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a, USB_CLASS_COMM,
> diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
> index 968d5d5..38734fd 100644
> --- a/drivers/net/usb/qmi_wwan.c
> +++ b/drivers/net/usb/qmi_wwan.c
> @@ -392,6 +392,13 @@ static const struct usb_device_id products[] = {
>  					      USB_CDC_PROTO_NONE),
>  		.driver_info        = (unsigned long)&qmi_wwan_info,
>  	},
> +	{	/* Dell Wireless 5804 (Novatel E371) */
> +		USB_DEVICE_AND_INTERFACE_INFO(0x413C, 0x819b,
> +					      USB_CLASS_COMM,
> +					      USB_CDC_SUBCLASS_ETHERNET,
> +					      USB_CDC_PROTO_NONE),
> +		.driver_info        = (unsigned long)&qmi_wwan_info,
> +	},
>  	{	/* ADU960S */
>  		USB_DEVICE_AND_INTERFACE_INFO(0x16d5, 0x650a,
>  					      USB_CLASS_COMM,
> diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c
> index 558adfc..569caf6 100644
> --- a/drivers/usb/serial/option.c
> +++ b/drivers/usb/serial/option.c
> @@ -196,6 +196,7 @@ static void option_instat_callback(struct urb *urb);
>  
>  #define DELL_PRODUCT_5800_MINICARD_VZW		0x8195  /* Novatel E362 */
>  #define DELL_PRODUCT_5800_V2_MINICARD_VZW	0x8196  /* Novatel E362 */
> +#define DELL_PRODUCT_5804_MINICARD_ATT		0x819b  /* Novatel E371 */
>  
>  #define KYOCERA_VENDOR_ID			0x0c88
>  #define KYOCERA_PRODUCT_KPC650			0x17da
> @@ -770,6 +771,7 @@ static const struct usb_device_id option_ids[] = {
>  	{ USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5730_MINICARD_VZW) }, 	/* Dell Wireless 5730 Mobile Broadband EVDO/HSPA Mini-Card */
>  	{ USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_MINICARD_VZW, 0xff, 0xff, 0xff) },
>  	{ USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5800_V2_MINICARD_VZW, 0xff, 0xff, 0xff) },
> +	{ USB_DEVICE_AND_INTERFACE_INFO(DELL_VENDOR_ID, DELL_PRODUCT_5804_MINICARD_ATT, 0xff, 0xff, 0xff) },
>  	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) },	/* ADU-E100, ADU-310 */
>  	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) },
>  	{ USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) },
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" 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	[flat|nested] 11+ messages in thread

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 20:24           ` Dan Williams
@ 2013-05-01 20:24             ` dag dg
  2013-05-01 20:28               ` Dan Williams
  0 siblings, 1 reply; 11+ messages in thread
From: dag dg @ 2013-05-01 20:24 UTC (permalink / raw)
  To: Dan Williams
  Cc: Bjørn Mork, linux-usb, Network Development, Greg KH, stable,
	Matthias Urlichs

Sorry the mailing list was complaining about my HTML mode. How would I
find the actual novatel E371 device ID? If I get some guidance there
I'd be happy to pull the data.

On Wed, May 1, 2013 at 3:24 PM, Dan Williams <dcbw@redhat.com> wrote:
> On Wed, 2013-05-01 at 15:20 -0500, dag dg wrote:
>> Vendor ID is 413c Product ID is 819b
>
> Bjorn meant the actual Novatel E371 device IDs...
>
> Dan
>
>>
>> On Wed, May 1, 2013 at 3:19 PM, Bjørn Mork <bjorn@mork.no> wrote:
>>
>> > Dan Williams <dcbw@redhat.com> writes:
>> >
>> > > On Wed, 2013-05-01 at 20:33 +0200, Bjørn Mork wrote:
>> > >> Dan Williams <dcbw@redhat.com> writes:
>> > >>
>> > >> > A rebranded Novatel E371 for AT&T's LTE bands.
>> > >>
>> > >> I don't think we're handling the Novatel branded E371 yet?  I tried
>> > >> googling for ID of that, but were unable to find it.  I guess you don't
>> > >> know either...  Well, nothing we can do about that until someone reports
>> > >> it.
>> > >
>> > > See the referenced bug report which prompted this:
>> > >
>> > > https://bugzilla.redhat.com/show_bug.cgi?id=955426
>> > >
>> > > It's definitely QMI capable.
>> >
>> > Yes, absolutely.
>> >
>> > I just assumed the E371 exists with a Novatel vendor ID as well. Which
>> > we could and should also add, if we only knew what the product ID is.
>> >
>> > But it wasn't my intention to question the addition of the Dell
>> > rebranded E371. There's absolutely no need to let that wait. Sorry for
>> > being unclear.  I am not communicating well today...
>> >
>> >
>> >
>> >
>> > Bjørn
>> >
>> >
>
>

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

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
       [not found]         ` <CAO2Qn5m08QOBJfuvR1xAF9msw2WX0mAT64=s8VmXuO41h9dkWg@mail.gmail.com>
@ 2013-05-01 20:24           ` Dan Williams
  2013-05-01 20:24             ` dag dg
  0 siblings, 1 reply; 11+ messages in thread
From: Dan Williams @ 2013-05-01 20:24 UTC (permalink / raw)
  To: dag dg
  Cc: Bjørn Mork, linux-usb, Network Development, Greg KH, stable,
	Matthias Urlichs

On Wed, 2013-05-01 at 15:20 -0500, dag dg wrote:
> Vendor ID is 413c Product ID is 819b

Bjorn meant the actual Novatel E371 device IDs...

Dan

> 
> On Wed, May 1, 2013 at 3:19 PM, Bjørn Mork <bjorn@mork.no> wrote:
> 
> > Dan Williams <dcbw@redhat.com> writes:
> >
> > > On Wed, 2013-05-01 at 20:33 +0200, Bjørn Mork wrote:
> > >> Dan Williams <dcbw@redhat.com> writes:
> > >>
> > >> > A rebranded Novatel E371 for AT&T's LTE bands.
> > >>
> > >> I don't think we're handling the Novatel branded E371 yet?  I tried
> > >> googling for ID of that, but were unable to find it.  I guess you don't
> > >> know either...  Well, nothing we can do about that until someone reports
> > >> it.
> > >
> > > See the referenced bug report which prompted this:
> > >
> > > https://bugzilla.redhat.com/show_bug.cgi?id=955426
> > >
> > > It's definitely QMI capable.
> >
> > Yes, absolutely.
> >
> > I just assumed the E371 exists with a Novatel vendor ID as well. Which
> > we could and should also add, if we only knew what the product ID is.
> >
> > But it wasn't my intention to question the addition of the Dell
> > rebranded E371. There's absolutely no need to let that wait. Sorry for
> > being unclear.  I am not communicating well today...
> >
> >
> >
> >
> > Bjørn
> >
> >

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

* Re: [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card
  2013-05-01 20:24             ` dag dg
@ 2013-05-01 20:28               ` Dan Williams
  0 siblings, 0 replies; 11+ messages in thread
From: Dan Williams @ 2013-05-01 20:28 UTC (permalink / raw)
  To: dag dg
  Cc: Bjørn Mork, linux-usb, Network Development, Greg KH, stable,
	Matthias Urlichs

On Wed, 2013-05-01 at 15:24 -0500, dag dg wrote:
> Sorry the mailing list was complaining about my HTML mode. How would I
> find the actual novatel E371 device ID? If I get some guidance there
> I'd be happy to pull the data.

Don't worry about it, Bjorn was just saying he wished we had that ID.
You don't need to go looking for it if you don't want to.

Dan

> On Wed, May 1, 2013 at 3:24 PM, Dan Williams <dcbw@redhat.com> wrote:
> > On Wed, 2013-05-01 at 15:20 -0500, dag dg wrote:
> >> Vendor ID is 413c Product ID is 819b
> >
> > Bjorn meant the actual Novatel E371 device IDs...
> >
> > Dan
> >
> >>
> >> On Wed, May 1, 2013 at 3:19 PM, Bjørn Mork <bjorn@mork.no> wrote:
> >>
> >> > Dan Williams <dcbw@redhat.com> writes:
> >> >
> >> > > On Wed, 2013-05-01 at 20:33 +0200, Bjørn Mork wrote:
> >> > >> Dan Williams <dcbw@redhat.com> writes:
> >> > >>
> >> > >> > A rebranded Novatel E371 for AT&T's LTE bands.
> >> > >>
> >> > >> I don't think we're handling the Novatel branded E371 yet?  I tried
> >> > >> googling for ID of that, but were unable to find it.  I guess you don't
> >> > >> know either...  Well, nothing we can do about that until someone reports
> >> > >> it.
> >> > >
> >> > > See the referenced bug report which prompted this:
> >> > >
> >> > > https://bugzilla.redhat.com/show_bug.cgi?id=955426
> >> > >
> >> > > It's definitely QMI capable.
> >> >
> >> > Yes, absolutely.
> >> >
> >> > I just assumed the E371 exists with a Novatel vendor ID as well. Which
> >> > we could and should also add, if we only knew what the product ID is.
> >> >
> >> > But it wasn't my intention to question the addition of the Dell
> >> > rebranded E371. There's absolutely no need to let that wait. Sorry for
> >> > being unclear.  I am not communicating well today...
> >> >
> >> >
> >> >
> >> >
> >> > Bjørn
> >> >
> >> >
> >
> >
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" 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	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-05-01 20:28 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-01 18:01 [PATCH] usb: add device IDs for Dell 5804 (Novatel E371) WWAN card Dan Williams
     [not found] ` <1367431305.12353.8.camel-wKZy7rqYPVb5EHUCmHmTqw@public.gmane.org>
2013-05-01 18:33   ` Bjørn Mork
2013-05-01 18:42     ` David Miller
2013-05-01 20:04       ` Dan Williams
2013-05-01 20:03     ` Dan Williams
2013-05-01 20:19       ` Bjørn Mork
2013-05-01 20:22         ` dag dg
     [not found]         ` <CAO2Qn5m08QOBJfuvR1xAF9msw2WX0mAT64=s8VmXuO41h9dkWg@mail.gmail.com>
2013-05-01 20:24           ` Dan Williams
2013-05-01 20:24             ` dag dg
2013-05-01 20:28               ` Dan Williams
2013-05-01 20:24 ` Dan Williams

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).