Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: add device IDs for igotu to navman

I recently bought a i-gotU USB GPS, and whilst hunting around for linux
support discovered this post by you back in 2009:

http://kerneltrap.org/mailarchive/linux-usb/2009/3/12/5148644

>Try the navman driver instead. You can either add the device id to the
> driver and rebuild it, or do this before you plug the device in:
> modprobe navman
> echo -n "0x0df7 0x0900" > /sys/bus/usb-serial/drivers/navman/new_id
>
> and then plug your device in and see if that works.

I can confirm that the navman driver works with the right device IDs on
my i-gotU GT-600, which has the same device IDs. Attached is a patch
adding the IDs.

From: Ross Burton <ross@linux.intel.com>
Cc: stable <stable@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Ross Burton and committed by
Greg Kroah-Hartman
0eee6a2b ebb8a4e4

+1
+1
drivers/usb/serial/navman.c
··· 25 25 26 26 static const struct usb_device_id id_table[] = { 27 27 { USB_DEVICE(0x0a99, 0x0001) }, /* Talon Technology device */ 28 + { USB_DEVICE(0x0df7, 0x0900) }, /* Mobile Action i-gotU */ 28 29 { }, 29 30 }; 30 31 MODULE_DEVICE_TABLE(usb, id_table);