On Fri, Jan 10, 2003 at 09:35:20AM -0800, Greg KH wrote:
> 
> Hm, I just duplicated this here on my box, by loading the driver, I'll
> take a look at it...

Ah, I forgot to change the .name fields on this driver, sorry.  Here's a
patch that fixes the problem for me, please let me know if it works for
you or not.

thanks,

greg k-h

#  USB: fix error message when loading the digi_acceleport driver.

diff -Nru a/drivers/usb/serial/digi_acceleport.c b/drivers/usb/serial/digi_acceleport.c
--- a/drivers/usb/serial/digi_acceleport.c      Fri Jan 10 09:41:57 2003
+++ b/drivers/usb/serial/digi_acceleport.c      Fri Jan 10 09:41:57 2003
@@ -507,7 +507,8 @@
 
 static struct usb_serial_device_type digi_acceleport_2_device = {
        .owner =                        THIS_MODULE,
-       .name =                         "Digi USB",
+       .name =                         "Digi 2 port USB adapter",
+       .short_name =                   "digi_2",
        .id_table =                     id_table_2,
        .num_interrupt_in =             0,
        .num_bulk_in =                  4,
@@ -531,7 +532,8 @@
 
 static struct usb_serial_device_type digi_acceleport_4_device = {
        .owner =                        THIS_MODULE,
-       .name =                         "Digi USB",
+       .name =                         "Digi 4 port USB adapter",
+       .short_name =                   "digi_4",
        .id_table =                     id_table_4,
        .num_interrupt_in =             0,
        .num_bulk_in =                  5,


-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to