[PATCH] gnss/usb: Add U-blox 8/M8 device id

Daniel Danzberger posted 1 patch 2 years, 3 months ago
There is a newer version of this series
drivers/gnss/usb.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] gnss/usb: Add U-blox 8/M8 device id
Posted by Daniel Danzberger 2 years, 3 months ago
Adds support for U-Blox 8 GNSS devices

Signed-off-by: Daniel Danzberger <dd@embedd.com>
---
 drivers/gnss/usb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gnss/usb.c b/drivers/gnss/usb.c
index 028ce56b20ea..927f89a5b3f0 100644
--- a/drivers/gnss/usb.c
+++ b/drivers/gnss/usb.c
@@ -18,6 +18,7 @@
 
 static const struct usb_device_id gnss_usb_id_table[] = {
 	{ USB_DEVICE(0x1199, 0xb000) },		/* Sierra Wireless XM1210 */
+	{ USB_DEVICE(0x1546, 0x01a8) },         /* U-blox 8/M8 GNSS Receiver */
 	{ }
 };
 MODULE_DEVICE_TABLE(usb, gnss_usb_id_table);
-- 
2.39.2
Re: [PATCH] gnss/usb: Add U-blox 8/M8 device id
Posted by Johan Hovold 2 years, 2 months ago
On Thu, Sep 07, 2023 at 08:44:13AM +0200, Daniel Danzberger wrote:
> Adds support for U-Blox 8 GNSS devices

I have u-blox 8 device with the same PID here as well and that one
identifies itself as a CDC device and is managed by the cdc-acm driver
currently.

Can you please post the output of lsusb -v for your device?

> +	{ USB_DEVICE(0x1546, 0x01a8) },         /* U-blox 8/M8 GNSS Receiver */

Johan