netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
@ 2017-11-20  4:19 ssjoholm-ee4meeAH724
  2017-11-20  6:57 ` Bjørn Mork
  0 siblings, 1 reply; 7+ messages in thread
From: ssjoholm-ee4meeAH724 @ 2017-11-20  4:19 UTC (permalink / raw)
  To: netdev-u79uwXL29TY76Z2rM5mHXA
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, bjorn-yOkvZcmFvRU, ssjoholm

From: ssjoholm <ssjoholm-ee4meeAH724@public.gmane.org>

Signed-off-by: ssjoholm <ssjoholm-ee4meeAH724@public.gmane.org>

Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel development board (EVB).
The USB id is added to qmi_wwan.c to allow QMI communication with the BG96.
---
 drivers/net/usb/qmi_wwan.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
index 720a3a248070..c750cf7c042b 100644
--- a/drivers/net/usb/qmi_wwan.c
+++ b/drivers/net/usb/qmi_wwan.c
@@ -1239,6 +1239,7 @@ static const struct usb_device_id products[] = {
 	{QMI_FIXED_INTF(0x1e0e, 0x9001, 5)},	/* SIMCom 7230E */
 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0125, 4)},	/* Quectel EC25, EC20 R2.0  Mini PCIe */
 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0121, 4)},	/* Quectel EC21 Mini PCIe */
+	{QMI_FIXED_INTF(0x2c7c, 0x0296, 4)},	/* Quectel BG96 */
 
 	/* 4. Gobi 1000 devices */
 	{QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},	/* Acer Gobi Modem Device */
-- 
2.11.0 (Apple Git-81)

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

* Re: [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
  2017-11-20  4:19 ssjoholm-ee4meeAH724
@ 2017-11-20  6:57 ` Bjørn Mork
  0 siblings, 0 replies; 7+ messages in thread
From: Bjørn Mork @ 2017-11-20  6:57 UTC (permalink / raw)
  To: ssjoholm, netdev; +Cc: linux-usb, linux-kernel, ssjoholm



On November 20, 2017 5:19:21 AM GMT+01:00, ssjoholm@mac.com wrote:
>From: ssjoholm <ssjoholm@mac.com>
>
>Signed-off-by: ssjoholm <ssjoholm@mac.com>
>
>Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both
>CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel
>development board (EVB).
>The USB id is added to qmi_wwan.c to allow QMI communication with the
>BG96.
>---
> drivers/net/usb/qmi_wwan.c | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
>index 720a3a248070..c750cf7c042b 100644
>--- a/drivers/net/usb/qmi_wwan.c
>+++ b/drivers/net/usb/qmi_wwan.c
>@@ -1239,6 +1239,7 @@ static const struct usb_device_id products[] = {
> 	{QMI_FIXED_INTF(0x1e0e, 0x9001, 5)},	/* SIMCom 7230E */
>	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0125, 4)},	/* Quectel EC25, EC20 R2.0 
>Mini PCIe */
> 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0121, 4)},	/* Quectel EC21 Mini PCIe */
>+	{QMI_FIXED_INTF(0x2c7c, 0x0296, 4)},	/* Quectel BG96 */
> 
> 	/* 4. Gobi 1000 devices */
> 	{QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},	/* Acer Gobi Modem Device */

Patch looks fine. But you need to use your full name in the tags. 
See the part about identity;
https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup

And the SOB and other tags go after the rest of the commit message. Your SOB should always be the last line. 



Bjørn 

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

* [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
@ 2017-11-20 18:05 Sebastian Sjoholm
  2017-11-20 18:28 ` Bjørn Mork
  2017-11-21 11:18 ` David Miller
  0 siblings, 2 replies; 7+ messages in thread
From: Sebastian Sjoholm @ 2017-11-20 18:05 UTC (permalink / raw)
  To: netdev; +Cc: linux-usb, linux-kernel, bjorn, Sebastian Sjoholm

Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both 
CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel development 
board (EVB). The USB id is added to qmi_wwan.c to allow QMI 
communication with the BG96.

Signed-off-by: Sebastian Sjoholm <ssjoholm@mac.com>

---
 drivers/net/usb/qmi_wwan.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
index 720a3a248070..c750cf7c042b 100644
--- a/drivers/net/usb/qmi_wwan.c
+++ b/drivers/net/usb/qmi_wwan.c
@@ -1239,6 +1239,7 @@ static const struct usb_device_id products[] = {
 	{QMI_FIXED_INTF(0x1e0e, 0x9001, 5)},	/* SIMCom 7230E */
 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0125, 4)},	/* Quectel EC25, EC20 R2.0  Mini PCIe */
 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0121, 4)},	/* Quectel EC21 Mini PCIe */
+	{QMI_FIXED_INTF(0x2c7c, 0x0296, 4)},	/* Quectel BG96 */
 
 	/* 4. Gobi 1000 devices */
 	{QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},	/* Acer Gobi Modem Device */
-- 
2.11.0 (Apple Git-81)

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

* Re: [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
  2017-11-20 18:05 [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296 Sebastian Sjoholm
@ 2017-11-20 18:28 ` Bjørn Mork
  2017-11-21 11:18 ` David Miller
  1 sibling, 0 replies; 7+ messages in thread
From: Bjørn Mork @ 2017-11-20 18:28 UTC (permalink / raw)
  To: Sebastian Sjoholm; +Cc: netdev, linux-usb, linux-kernel

Sebastian Sjoholm <ssjoholm@mac.com> writes:

> Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both 
> CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel development 
> board (EVB). The USB id is added to qmi_wwan.c to allow QMI 
> communication with the BG96.
>
> Signed-off-by: Sebastian Sjoholm <ssjoholm@mac.com>

Perfect.  Thanks.

Acked-by: Bjørn Mork <bjorn@mork.no>

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

* Re: [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
  2017-11-20 18:05 [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296 Sebastian Sjoholm
  2017-11-20 18:28 ` Bjørn Mork
@ 2017-11-21 11:18 ` David Miller
  1 sibling, 0 replies; 7+ messages in thread
From: David Miller @ 2017-11-21 11:18 UTC (permalink / raw)
  To: ssjoholm; +Cc: netdev, linux-usb, linux-kernel, bjorn

From: Sebastian Sjoholm <ssjoholm@mac.com>
Date: Mon, 20 Nov 2017 19:05:17 +0100

> Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both 
> CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel development 
> board (EVB). The USB id is added to qmi_wwan.c to allow QMI 
> communication with the BG96.
> 
> Signed-off-by: Sebastian Sjoholm <ssjoholm@mac.com>

Applied and queued up for -stable.

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

* [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
@ 2017-12-11 20:12 ssjoholm
       [not found] ` <20171211201201.84770-1-ssjoholm-ee4meeAH724@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: ssjoholm @ 2017-12-11 20:12 UTC (permalink / raw)
  To: netdev; +Cc: linux-usb, linux-kernel, bjorn, rspmn, Sebastian Sjoholm

From: Sebastian Sjoholm <ssjoholm@mac.com>

Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both 
CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel development 
board (EVB). The USB id is added to qmi_wwan.c to allow QMI 
communication with the BG96.

Signed-off-by: Sebastian Sjoholm <ssjoholm@mac.com>

---
 drivers/net/usb/qmi_wwan.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
index 720a3a248070..c750cf7c042b 100644
--- a/drivers/net/usb/qmi_wwan.c
+++ b/drivers/net/usb/qmi_wwan.c
@@ -1239,6 +1239,7 @@ static const struct usb_device_id products[] = {
 	{QMI_FIXED_INTF(0x1e0e, 0x9001, 5)},	/* SIMCom 7230E */
 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0125, 4)},	/* Quectel EC25, EC20 R2.0  Mini PCIe */
 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0121, 4)},	/* Quectel EC21 Mini PCIe */
+	{QMI_FIXED_INTF(0x2c7c, 0x0296, 4)},	/* Quectel BG96 */
 
 	/* 4. Gobi 1000 devices */
 	{QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},	/* Acer Gobi Modem Device */
-- 
2.11.0 (Apple Git-81)

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

* Re: [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296
       [not found] ` <20171211201201.84770-1-ssjoholm-ee4meeAH724@public.gmane.org>
@ 2017-12-11 20:15   ` Sebastian Sjoholm
  0 siblings, 0 replies; 7+ messages in thread
From: Sebastian Sjoholm @ 2017-12-11 20:15 UTC (permalink / raw)
  To: netdev-u79uwXL29TY76Z2rM5mHXA
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, bjorn-yOkvZcmFvRU,
	rspmn-KvP5wT2u2U0

Hi,

Sorry for the re-email of the patch below, clearly a beginners mistake of me not to clear my tmp/ folder.

Please disregard this.

Regards,
Sebastian

> On Dec 11, 2017, at 21:12 , ssjoholm-ee4meeAH724@public.gmane.org wrote:
> 
> From: Sebastian Sjoholm <ssjoholm-ee4meeAH724@public.gmane.org>
> 
> Quectel BG96 is an Qualcomm MDM9206 based IoT modem, supporting both 
> CAT-M and NB-IoT. Tested hardware is BG96 mounted on Quectel development 
> board (EVB). The USB id is added to qmi_wwan.c to allow QMI 
> communication with the BG96.
> 
> Signed-off-by: Sebastian Sjoholm <ssjoholm-ee4meeAH724@public.gmane.org>
> 
> ---
> drivers/net/usb/qmi_wwan.c | 1 +
> 1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c
> index 720a3a248070..c750cf7c042b 100644
> --- a/drivers/net/usb/qmi_wwan.c
> +++ b/drivers/net/usb/qmi_wwan.c
> @@ -1239,6 +1239,7 @@ static const struct usb_device_id products[] = {
> 	{QMI_FIXED_INTF(0x1e0e, 0x9001, 5)},	/* SIMCom 7230E */
> 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0125, 4)},	/* Quectel EC25, EC20 R2.0  Mini PCIe */
> 	{QMI_QUIRK_SET_DTR(0x2c7c, 0x0121, 4)},	/* Quectel EC21 Mini PCIe */
> +	{QMI_FIXED_INTF(0x2c7c, 0x0296, 4)},	/* Quectel BG96 */
> 
> 	/* 4. Gobi 1000 devices */
> 	{QMI_GOBI1K_DEVICE(0x05c6, 0x9212)},	/* Acer Gobi Modem Device */
> -- 
> 2.11.0 (Apple Git-81)
> 

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

end of thread, other threads:[~2017-12-11 20:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-20 18:05 [PATCH net,stable] net: qmi_wwan: add Quectel BG96 2c7c:0296 Sebastian Sjoholm
2017-11-20 18:28 ` Bjørn Mork
2017-11-21 11:18 ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2017-12-11 20:12 ssjoholm
     [not found] ` <20171211201201.84770-1-ssjoholm-ee4meeAH724@public.gmane.org>
2017-12-11 20:15   ` Sebastian Sjoholm
2017-11-20  4:19 ssjoholm-ee4meeAH724
2017-11-20  6:57 ` Bjørn Mork

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).