2 * Suunto ANT+ USB Driver
4 * Copyright (C) 2013 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5 * Copyright (C) 2013 Linux Foundation
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation only.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/tty.h>
15 #include <linux/module.h>
16 #include <linux/usb.h>
17 #include <linux/usb/serial.h>
18 #include <linux/uaccess.h>
20 static const struct usb_device_id id_table[] = {
21 { USB_DEVICE(0x0fcf, 0x1008) },
24 MODULE_DEVICE_TABLE(usb, id_table);
26 static struct usb_serial_driver suunto_device = {
29 .name = KBUILD_MODNAME,
35 static struct usb_serial_driver * const serial_drivers[] = {
40 module_usb_serial_driver(serial_drivers, id_table);
41 MODULE_LICENSE("GPL");