Linux Kernel
3.7.1
|
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/tty.h>
#include <linux/tty_driver.h>
#include <linux/tty_flip.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/uaccess.h>
#include <linux/usb.h>
#include <linux/usb/serial.h>
#include <linux/usb/irda.h>
Go to the source code of this file.
Macros | |
#define | DRIVER_AUTHOR "Greg Kroah-Hartman <[email protected]>, Johan Hovold <[email protected]>" |
#define | DRIVER_DESC "USB IR Dongle driver" |
Functions | |
MODULE_DEVICE_TABLE (usb, ir_id_table) | |
module_init (ir_init) | |
module_exit (ir_exit) | |
MODULE_AUTHOR (DRIVER_AUTHOR) | |
MODULE_DESCRIPTION (DRIVER_DESC) | |
MODULE_LICENSE ("GPL") | |
module_param (xbof, int, 0) | |
MODULE_PARM_DESC (xbof,"Force specific number of XBOFs") | |
module_param (buffer_size, int, 0) | |
MODULE_PARM_DESC (buffer_size,"Size of the transfer buffers") | |
#define DRIVER_AUTHOR "Greg Kroah-Hartman <[email protected]>, Johan Hovold <[email protected]>" |
MODULE_AUTHOR | ( | DRIVER_AUTHOR | ) |
MODULE_DESCRIPTION | ( | DRIVER_DESC | ) |
MODULE_DEVICE_TABLE | ( | usb | , |
ir_id_table | |||
) |
module_exit | ( | ir_exit | ) |
module_init | ( | ir_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param | ( | xbof | , |
int | , | ||
0 | |||
) |
module_param | ( | buffer_size | , |
int | , | ||
0 | |||
) |
MODULE_PARM_DESC | ( | xbof | , |
"Force specific number of XBOFs" | |||
) |
MODULE_PARM_DESC | ( | buffer_size | , |
"Size of the transfer buffers" | |||
) |