2 * Frontier Designs Alphatrack driver
4 * Copyright (C) 2007 Michael Taht (m@taht.net)
6 * Based on the usbled driver and ldusb drivers by
8 * Copyright (C) 2004 Greg Kroah-Hartman (greg@kroah.com)
9 * Copyright (C) 2005 Michael Hund <mhund@ld-didactic.de>
11 * The ldusb driver was, in turn, derived from Lego USB Tower driver
12 * Copyright (C) 2003 David Glance <advidgsf@sourceforge.net>
13 * 2001-2004 Juergen Stuber <starblue@users.sourceforge.net>
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation, version 2.
22 * This driver uses a ring buffer for time critical reading of
23 * interrupt in reports and provides read and write methods for
24 * raw interrupt reports.
27 /* Note: this currently uses a dumb ringbuffer for reads and writes.
28 * A more optimal driver would cache and kill off outstanding urbs that are
29 * now invalid, and ignore ones that already were in the queue but valid
30 * as we only have 30 commands for the alphatrack. In particular this is
31 * key for getting lights to flash in time as otherwise many commands
32 * can be buffered up before the light change makes it to the interface.
35 #include <linux/kernel.h>
36 #include <linux/errno.h>
37 #include <linux/init.h>
38 #include <linux/slab.h>
39 #include <linux/module.h>
40 #include <linux/kobject.h>
41 #include <linux/mutex.h>
43 #include <linux/uaccess.h>
44 #include <linux/input.h>
45 #include <linux/usb.h>
46 #include <linux/poll.h>
48 #include "alphatrack.h"
50 #define VENDOR_ID 0x165b
51 #define PRODUCT_ID 0xfad1
53 #ifdef CONFIG_USB_DYNAMIC_MINORS
54 #define USB_ALPHATRACK_MINOR_BASE 0
56 /* FIXME 176 - is another driver's minor - apply for that */
57 #define USB_ALPHATRACK_MINOR_BASE 176
60 /* table of devices that work with this driver */
61 static struct usb_device_id usb_alphatrack_table[] = {
62 {USB_DEVICE(VENDOR_ID, PRODUCT_ID)},
63 {} /* Terminating entry */
66 MODULE_DEVICE_TABLE(usb, usb_alphatrack_table);
67 MODULE_VERSION("0.41");
68 MODULE_AUTHOR("Mike Taht <m@taht.net>");
69 MODULE_DESCRIPTION("Alphatrack USB Driver");
70 MODULE_LICENSE("GPL");
71 MODULE_SUPPORTED_DEVICE("Frontier Designs Alphatrack Control Surface");
73 /* These aren't done yet */
75 #define SUPPRESS_EXTRA_ONLINE_EVENTS 0
76 #define BUFFERED_WRITES 0
77 #define SUPPRESS_EXTRA_OFFLINE_EVENTS 0
78 #define COMPRESS_FADER_EVENTS 0
80 #define BUFFERED_READS 1
81 #define RING_BUFFER_SIZE 512
82 #define WRITE_BUFFER_SIZE 34
83 #define ALPHATRACK_USB_TIMEOUT 10
84 #define OUTPUT_CMD_SIZE 8
85 #define INPUT_CMD_SIZE 12
86 #define ALPHATRACK_DEBUG 0
88 static int debug = ALPHATRACK_DEBUG;
90 /* Use our own dbg macro */
91 #define dbg_info(dev, format, arg...) do \
92 { if (debug) dev_info(dev , format , ## arg); } while (0)
94 #define alphatrack_ocmd_info(dev, cmd, format, arg...)
96 #define alphatrack_icmd_info(dev, cmd, format, arg...)
98 /* Module parameters */
100 module_param(debug, int, S_IRUGO | S_IWUSR);
101 MODULE_PARM_DESC(debug, "Debug enabled or not");
103 /* All interrupt in transfers are collected in a ring buffer to
104 * avoid racing conditions and get better performance of the driver.
107 static int ring_buffer_size = RING_BUFFER_SIZE;
109 module_param(ring_buffer_size, int, S_IRUGO);
110 MODULE_PARM_DESC(ring_buffer_size, "Read ring buffer size");
112 /* The write_buffer can one day contain more than one interrupt out transfer.
115 static int write_buffer_size = WRITE_BUFFER_SIZE;
116 module_param(write_buffer_size, int, S_IRUGO);
117 MODULE_PARM_DESC(write_buffer_size, "Write buffer size");
120 * Increase the interval for debugging purposes.
121 * or set to 1 to use the standard interval from the endpoint descriptors.
124 static int min_interrupt_in_interval = ALPHATRACK_USB_TIMEOUT;
125 module_param(min_interrupt_in_interval, int, 0);
126 MODULE_PARM_DESC(min_interrupt_in_interval,
127 "Minimum interrupt in interval in ms");
129 static int min_interrupt_out_interval = ALPHATRACK_USB_TIMEOUT;
130 module_param(min_interrupt_out_interval, int, 0);
131 MODULE_PARM_DESC(min_interrupt_out_interval,
132 "Minimum interrupt out interval in ms");
134 /* Structure to hold all of our device specific stuff */
136 struct usb_alphatrack {
137 struct semaphore sem; /* locks this structure */
138 struct usb_interface *intf; /* save off the usb interface pointer */
139 int open_count; /* number of times this port has been opened */
142 struct alphatrack_icmd (*ring_buffer)[RING_BUFFER_SIZE];
143 struct alphatrack_ocmd (*write_buffer)[WRITE_BUFFER_SIZE];
144 unsigned int ring_head;
145 unsigned int ring_tail;
147 wait_queue_head_t read_wait;
148 wait_queue_head_t write_wait;
150 unsigned char *interrupt_in_buffer;
151 unsigned char *oldi_buffer;
152 struct usb_endpoint_descriptor *interrupt_in_endpoint;
153 struct urb *interrupt_in_urb;
154 int interrupt_in_interval;
155 size_t interrupt_in_endpoint_size;
156 int interrupt_in_running;
157 int interrupt_in_done;
159 char *interrupt_out_buffer;
160 struct usb_endpoint_descriptor *interrupt_out_endpoint;
161 struct urb *interrupt_out_urb;
162 int interrupt_out_interval;
163 size_t interrupt_out_endpoint_size;
164 int interrupt_out_busy;
166 atomic_t writes_pending;
167 int event; /* alternate interface to events */
168 int fader; /* 10 bits */
169 int lights; /* 23 bits */
170 unsigned char dump_state; /* 0 if disabled 1 if enabled */
171 unsigned char enable; /* 0 if disabled 1 if enabled */
172 unsigned char offline; /* if the device is out of range or asleep */
173 unsigned char verbose; /* be verbose in error reporting */
174 unsigned char last_cmd[OUTPUT_CMD_SIZE];
175 unsigned char screen[32];
178 /* prevent races between open() and disconnect() */
179 static DEFINE_MUTEX(disconnect_mutex);
181 /* forward declaration */
183 static struct usb_driver usb_alphatrack_driver;
186 * usb_alphatrack_abort_transfers
187 * aborts transfers and frees associated data structures
189 static void usb_alphatrack_abort_transfers(struct usb_alphatrack *dev)
191 /* shutdown transfer */
192 if (dev->interrupt_in_running) {
193 dev->interrupt_in_running = 0;
195 usb_kill_urb(dev->interrupt_in_urb);
197 if (dev->interrupt_out_busy)
199 usb_kill_urb(dev->interrupt_out_urb);
203 * usb_alphatrack_delete
205 static void usb_alphatrack_delete(struct usb_alphatrack *dev)
207 usb_alphatrack_abort_transfers(dev);
208 usb_free_urb(dev->interrupt_in_urb);
209 usb_free_urb(dev->interrupt_out_urb);
210 kfree(dev->ring_buffer);
211 kfree(dev->interrupt_in_buffer);
212 kfree(dev->interrupt_out_buffer);
213 kfree(dev); /* fixme oldi_buffer */
217 * usb_alphatrack_interrupt_in_callback
220 static void usb_alphatrack_interrupt_in_callback(struct urb *urb)
222 struct usb_alphatrack *dev = urb->context;
223 unsigned int next_ring_head;
227 if (urb->status == -ENOENT ||
228 urb->status == -ECONNRESET || urb->status == -ESHUTDOWN) {
231 dbg_info(&dev->intf->dev,
232 "%s: nonzero status received: %d\n", __func__,
234 goto resubmit; /* maybe we can recover */
238 if (urb->actual_length != INPUT_CMD_SIZE) {
239 dev_warn(&dev->intf->dev,
240 "Urb length was %d bytes!!"
241 "Do something intelligent \n", urb->actual_length);
243 alphatrack_ocmd_info(&dev->intf->dev,
244 &(*dev->ring_buffer)[dev->ring_tail].cmd,
247 (dev->interrupt_in_buffer, dev->oldi_buffer,
248 INPUT_CMD_SIZE) == 0) {
251 memcpy(dev->oldi_buffer, dev->interrupt_in_buffer,
254 #if SUPPRESS_EXTRA_OFFLINE_EVENTS
255 if (dev->offline == 2 && dev->interrupt_in_buffer[1] == 0xff)
257 if (dev->offline == 1 && dev->interrupt_in_buffer[1] == 0xff) {
261 /* Always pass one offline event up the stack */
262 if (dev->offline > 0 && dev->interrupt_in_buffer[1] != 0xff)
264 if (dev->offline == 0 && dev->interrupt_in_buffer[1] == 0xff)
267 dbg_info(&dev->intf->dev, "%s: head, tail are %x, %x\n",
268 __func__, dev->ring_head, dev->ring_tail);
269 next_ring_head = (dev->ring_head + 1) % ring_buffer_size;
271 if (next_ring_head != dev->ring_tail) {
272 memcpy(&((*dev->ring_buffer)[dev->ring_head]),
273 dev->interrupt_in_buffer, urb->actual_length);
274 dev->ring_head = next_ring_head;
276 memset(dev->interrupt_in_buffer, 0, urb->actual_length);
278 dev_warn(&dev->intf->dev,
279 "Ring buffer overflow, %d bytes dropped\n",
281 memset(dev->interrupt_in_buffer, 0, urb->actual_length);
286 /* resubmit if we're still running */
287 if (dev->interrupt_in_running && dev->intf) {
288 retval = usb_submit_urb(dev->interrupt_in_urb, GFP_ATOMIC);
290 dev_err(&dev->intf->dev,
291 "usb_submit_urb failed (%d)\n", retval);
295 dev->interrupt_in_done = 1;
296 wake_up_interruptible(&dev->read_wait);
300 * usb_alphatrack_interrupt_out_callback
302 static void usb_alphatrack_interrupt_out_callback(struct urb *urb)
304 struct usb_alphatrack *dev = urb->context;
306 /* sync/async unlink faults aren't errors */
307 if (urb->status && !(urb->status == -ENOENT ||
308 urb->status == -ECONNRESET ||
309 urb->status == -ESHUTDOWN))
310 dbg_info(&dev->intf->dev,
311 "%s - nonzero write interrupt status received: %d\n",
312 __func__, urb->status);
313 atomic_dec(&dev->writes_pending);
314 dev->interrupt_out_busy = 0;
315 wake_up_interruptible(&dev->write_wait);
319 * usb_alphatrack_open
321 static int usb_alphatrack_open(struct inode *inode, struct file *file)
323 struct usb_alphatrack *dev;
326 struct usb_interface *interface;
328 nonseekable_open(inode, file);
329 subminor = iminor(inode);
331 mutex_lock(&disconnect_mutex);
333 interface = usb_find_interface(&usb_alphatrack_driver, subminor);
336 err("%s - error, can't find device for minor %d\n",
339 goto unlock_disconnect_exit;
342 dev = usb_get_intfdata(interface);
346 goto unlock_disconnect_exit;
349 /* lock this device */
350 if (down_interruptible(&dev->sem)) {
351 retval = -ERESTARTSYS;
352 goto unlock_disconnect_exit;
355 /* allow opening only once */
356 if (dev->open_count) {
362 /* initialize in direction */
365 usb_fill_int_urb(dev->interrupt_in_urb,
366 interface_to_usbdev(interface),
367 usb_rcvintpipe(interface_to_usbdev(interface),
368 dev->interrupt_in_endpoint->
370 dev->interrupt_in_buffer,
371 dev->interrupt_in_endpoint_size,
372 usb_alphatrack_interrupt_in_callback, dev,
373 dev->interrupt_in_interval);
375 dev->interrupt_in_running = 1;
376 dev->interrupt_in_done = 0;
380 retval = usb_submit_urb(dev->interrupt_in_urb, GFP_KERNEL);
382 dev_err(&interface->dev,
383 "Couldn't submit interrupt_in_urb %d\n", retval);
384 dev->interrupt_in_running = 0;
389 /* save device in the file's private structure */
390 file->private_data = dev;
395 unlock_disconnect_exit:
396 mutex_unlock(&disconnect_mutex);
402 * usb_alphatrack_release
404 static int usb_alphatrack_release(struct inode *inode, struct file *file)
406 struct usb_alphatrack *dev;
409 dev = file->private_data;
416 if (down_interruptible(&dev->sem)) {
417 retval = -ERESTARTSYS;
421 if (dev->open_count != 1) {
426 if (dev->intf == NULL) {
427 /* the device was unplugged before the file was released */
429 /* unlock here as usb_alphatrack_delete frees dev */
430 usb_alphatrack_delete(dev);
435 /* wait until write transfer is finished */
436 if (dev->interrupt_out_busy)
437 wait_event_interruptible_timeout(dev->write_wait,
438 !dev->interrupt_out_busy,
440 usb_alphatrack_abort_transfers(dev);
451 * usb_alphatrack_poll
453 static unsigned int usb_alphatrack_poll(struct file *file, poll_table * wait)
455 struct usb_alphatrack *dev;
456 unsigned int mask = 0;
458 dev = file->private_data;
460 poll_wait(file, &dev->read_wait, wait);
461 poll_wait(file, &dev->write_wait, wait);
463 if (dev->ring_head != dev->ring_tail)
464 mask |= POLLIN | POLLRDNORM;
465 if (!dev->interrupt_out_busy)
466 mask |= POLLOUT | POLLWRNORM;
472 * usb_alphatrack_read
474 static ssize_t usb_alphatrack_read(struct file *file, char __user *buffer,
475 size_t count, loff_t *ppos)
477 struct usb_alphatrack *dev;
482 dev = file->private_data;
484 /* verify that we actually have some data to read */
488 /* lock this object */
489 if (down_interruptible(&dev->sem)) {
490 retval = -ERESTARTSYS;
494 /* verify that the device wasn't unplugged */
495 if (dev->intf == NULL) {
497 err("No device or device unplugged %d\n", retval);
501 while (dev->ring_head == dev->ring_tail) {
502 if (file->f_flags & O_NONBLOCK) {
506 dev->interrupt_in_done = 0;
508 wait_event_interruptible(dev->read_wait,
509 dev->interrupt_in_done);
514 alphatrack_ocmd_info(&dev->intf->dev,
515 &(*dev->ring_buffer)[dev->ring_tail].cmd, "%s",
516 ": copying to userspace");
519 while ((c < count) && (dev->ring_tail != dev->ring_head)) {
521 (&buffer[c], &(*dev->ring_buffer)[dev->ring_tail],
526 dev->ring_tail = (dev->ring_tail + 1) % ring_buffer_size;
528 dbg_info(&dev->intf->dev, "%s: head, tail are %x, %x\n",
529 __func__, dev->ring_head, dev->ring_tail);
534 /* unlock the device */
542 * usb_alphatrack_write
544 static ssize_t usb_alphatrack_write(struct file *file,
545 const char __user *buffer, size_t count,
548 struct usb_alphatrack *dev;
549 size_t bytes_to_write;
552 dev = file->private_data;
554 /* verify that we actually have some data to write */
558 /* lock this object */
559 if (down_interruptible(&dev->sem)) {
560 retval = -ERESTARTSYS;
564 /* verify that the device wasn't unplugged */
565 if (dev->intf == NULL) {
567 err("No device or device unplugged %d\n", retval);
571 /* wait until previous transfer is finished */
572 if (dev->interrupt_out_busy) {
573 if (file->f_flags & O_NONBLOCK) {
578 wait_event_interruptible(dev->write_wait,
579 !dev->interrupt_out_busy);
584 /* write the data into interrupt_out_buffer from userspace */
585 /* FIXME - if you write more than 12 bytes this breaks */
587 min(count, write_buffer_size * dev->interrupt_out_endpoint_size);
588 if (bytes_to_write < count)
589 dev_warn(&dev->intf->dev,
590 "Write buffer overflow, %zd bytes dropped\n",
591 count - bytes_to_write);
593 dbg_info(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n",
594 __func__, count, bytes_to_write);
596 if (copy_from_user(dev->interrupt_out_buffer, buffer, bytes_to_write)) {
601 if (dev->interrupt_out_endpoint == NULL) {
602 err("Endpoint should not be be null! \n");
606 /* send off the urb */
607 usb_fill_int_urb(dev->interrupt_out_urb,
608 interface_to_usbdev(dev->intf),
609 usb_sndintpipe(interface_to_usbdev(dev->intf),
610 dev->interrupt_out_endpoint->
612 dev->interrupt_out_buffer, bytes_to_write,
613 usb_alphatrack_interrupt_out_callback, dev,
614 dev->interrupt_out_interval);
615 dev->interrupt_out_busy = 1;
616 atomic_inc(&dev->writes_pending);
619 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL);
621 dev->interrupt_out_busy = 0;
622 err("Couldn't submit interrupt_out_urb %d\n", retval);
623 atomic_dec(&dev->writes_pending);
626 retval = bytes_to_write;
629 /* unlock the device */
636 /* file operations needed when we register this driver */
637 static const struct file_operations usb_alphatrack_fops = {
638 .owner = THIS_MODULE,
639 .read = usb_alphatrack_read,
640 .write = usb_alphatrack_write,
641 .open = usb_alphatrack_open,
642 .release = usb_alphatrack_release,
643 .poll = usb_alphatrack_poll,
647 * usb class driver info in order to get a minor number from the usb core,
648 * and to have the device registered with the driver core
651 static struct usb_class_driver usb_alphatrack_class = {
652 .name = "alphatrack%d",
653 .fops = &usb_alphatrack_fops,
654 .minor_base = USB_ALPHATRACK_MINOR_BASE,
658 * usb_alphatrack_probe
660 * Called by the usb core when a new device is connected that it thinks
661 * this driver might be interested in.
663 static int usb_alphatrack_probe(struct usb_interface *intf,
664 const struct usb_device_id *id)
666 struct usb_device *udev = interface_to_usbdev(intf);
667 struct usb_alphatrack *dev = NULL;
668 struct usb_host_interface *iface_desc;
669 struct usb_endpoint_descriptor *endpoint;
672 int retval = -ENOMEM;
674 /* allocate memory for our device state and intialize it */
676 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
678 dev_err(&intf->dev, "Out of memory\n");
681 init_MUTEX(&dev->sem);
683 init_waitqueue_head(&dev->read_wait);
684 init_waitqueue_head(&dev->write_wait);
686 iface_desc = intf->cur_altsetting;
688 /* set up the endpoint information */
689 for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
690 endpoint = &iface_desc->endpoint[i].desc;
692 if (usb_endpoint_is_int_in(endpoint))
693 dev->interrupt_in_endpoint = endpoint;
695 if (usb_endpoint_is_int_out(endpoint))
696 dev->interrupt_out_endpoint = endpoint;
698 if (dev->interrupt_in_endpoint == NULL) {
699 dev_err(&intf->dev, "Interrupt in endpoint not found\n");
702 if (dev->interrupt_out_endpoint == NULL)
704 "Interrupt out endpoint not found"
705 "(using control endpoint instead)\n");
707 dev->interrupt_in_endpoint_size =
708 le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize);
710 if (dev->interrupt_in_endpoint_size != 64)
711 dev_warn(&intf->dev, "Interrupt in endpoint size is not 64!\n");
713 if (ring_buffer_size == 0)
714 ring_buffer_size = RING_BUFFER_SIZE;
716 true_size = min(ring_buffer_size, RING_BUFFER_SIZE);
718 /* FIXME - there are more usb_alloc routines for dma correctness.
721 kmalloc((true_size * sizeof(struct alphatrack_icmd)), GFP_KERNEL);
723 if (!dev->ring_buffer) {
725 "Couldn't allocate input ring_buffer of size %d\n",
730 dev->interrupt_in_buffer =
731 kmalloc(dev->interrupt_in_endpoint_size, GFP_KERNEL);
733 if (!dev->interrupt_in_buffer) {
734 dev_err(&intf->dev, "Couldn't allocate interrupt_in_buffer\n");
737 dev->oldi_buffer = kmalloc(dev->interrupt_in_endpoint_size, GFP_KERNEL);
738 if (!dev->oldi_buffer) {
739 dev_err(&intf->dev, "Couldn't allocate old buffer\n");
742 dev->interrupt_in_urb = usb_alloc_urb(0, GFP_KERNEL);
743 if (!dev->interrupt_in_urb) {
744 dev_err(&intf->dev, "Couldn't allocate interrupt_in_urb\n");
748 dev->interrupt_out_endpoint_size =
749 dev->interrupt_out_endpoint ? le16_to_cpu(dev->
750 interrupt_out_endpoint->
751 wMaxPacketSize) : udev->
752 descriptor.bMaxPacketSize0;
754 if (dev->interrupt_out_endpoint_size != 64)
756 "Interrupt out endpoint size is not 64!)\n");
758 if (write_buffer_size == 0)
759 write_buffer_size = WRITE_BUFFER_SIZE;
760 true_size = min(write_buffer_size, WRITE_BUFFER_SIZE);
762 dev->interrupt_out_buffer =
763 kmalloc(true_size * dev->interrupt_out_endpoint_size, GFP_KERNEL);
765 if (!dev->interrupt_out_buffer) {
766 dev_err(&intf->dev, "Couldn't allocate interrupt_out_buffer\n");
771 kmalloc(sizeof(struct alphatrack_ocmd) * true_size, GFP_KERNEL);
773 if (!dev->write_buffer) {
774 dev_err(&intf->dev, "Couldn't allocate write_buffer \n");
778 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL);
779 if (!dev->interrupt_out_urb) {
780 dev_err(&intf->dev, "Couldn't allocate interrupt_out_urb\n");
783 dev->interrupt_in_interval =
784 min_interrupt_in_interval >
785 dev->interrupt_in_endpoint->
786 bInterval ? min_interrupt_in_interval : dev->interrupt_in_endpoint->
788 if (dev->interrupt_out_endpoint)
789 dev->interrupt_out_interval =
790 min_interrupt_out_interval >
791 dev->interrupt_out_endpoint->
792 bInterval ? min_interrupt_out_interval : dev->
793 interrupt_out_endpoint->bInterval;
795 /* we can register the device now, as it is ready */
796 usb_set_intfdata(intf, dev);
798 atomic_set(&dev->writes_pending, 0);
799 retval = usb_register_dev(intf, &usb_alphatrack_class);
801 /* something prevented us from registering this driver */
803 "Not able to get a minor for this device.\n");
804 usb_set_intfdata(intf, NULL);
808 /* let the user know what node this device is now attached to */
810 "Alphatrack Device #%d now attached to major %d minor %d\n",
811 (intf->minor - USB_ALPHATRACK_MINOR_BASE), USB_MAJOR,
818 usb_alphatrack_delete(dev);
824 * usb_alphatrack_disconnect
826 * Called by the usb core when the device is removed from the system.
828 static void usb_alphatrack_disconnect(struct usb_interface *intf)
830 struct usb_alphatrack *dev;
833 mutex_lock(&disconnect_mutex);
835 dev = usb_get_intfdata(intf);
836 usb_set_intfdata(intf, NULL);
842 /* give back our minor */
843 usb_deregister_dev(intf, &usb_alphatrack_class);
845 /* if the device is not opened, then we clean up right now */
846 if (!dev->open_count) {
848 usb_alphatrack_delete(dev);
854 atomic_set(&dev->writes_pending, 0);
855 mutex_unlock(&disconnect_mutex);
857 dev_info(&intf->dev, "Alphatrack Surface #%d now disconnected\n",
858 (minor - USB_ALPHATRACK_MINOR_BASE));
861 /* usb specific object needed to register this driver with the usb subsystem */
862 static struct usb_driver usb_alphatrack_driver = {
863 .name = "alphatrack",
864 .probe = usb_alphatrack_probe,
865 .disconnect = usb_alphatrack_disconnect,
866 .id_table = usb_alphatrack_table,
870 * usb_alphatrack_init
872 static int __init usb_alphatrack_init(void)
876 /* register this driver with the USB subsystem */
877 retval = usb_register(&usb_alphatrack_driver);
879 err("usb_register failed for the " __FILE__
880 " driver. Error number %d\n", retval);
886 * usb_alphatrack_exit
888 static void __exit usb_alphatrack_exit(void)
890 /* deregister this driver with the USB subsystem */
891 usb_deregister(&usb_alphatrack_driver);
894 module_init(usb_alphatrack_init);
895 module_exit(usb_alphatrack_exit);