#include <linux/module.h>
#include <linux/kmod.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/poll.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/delay.h>
#include <linux/completion.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/firmware.h>
#include <linux/vmalloc.h>
#include <linux/mutex.h>
#include <linux/kthread.h>
#include <media/lirc_dev.h>
#include <media/lirc.h>
Go to the source code of this file.
|
| module_init (zilog_init) |
|
| module_exit (zilog_exit) |
|
| MODULE_DESCRIPTION ("Zilog/Hauppauge infrared transmitter driver (i2c stack)") |
|
| MODULE_AUTHOR ("Gerd Knorr, Michal Kochanowicz, Christoph Bartelmus, ""Ulrich Mueller, Stefan Jahn, Jerome Brock, Mark Weaver, ""Andy Walls") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_ALIAS ("lirc_pvr150") |
|
| module_param (minor, int, 0444) |
|
| MODULE_PARM_DESC (minor,"Preferred minor device number") |
|
| module_param (debug, bool, 0644) |
|
| MODULE_PARM_DESC (debug,"Enable debugging messages") |
|
| module_param (tx_only, bool, 0644) |
|
| MODULE_PARM_DESC (tx_only,"Only handle the IR transmit function") |
|
#define dprintk |
( |
|
fmt, |
|
|
|
args... |
|
) |
| |
Value:do { \
## args); \
} while (0)
Definition at line 162 of file lirc_zilog.c.
#define ID_FLAG_HDPVR 0x02 |
#define zilog_notify |
( |
|
s, |
|
|
|
args... |
|
) |
| |
MODULE_ALIAS |
( |
"lirc_pvr150" |
| ) |
|
MODULE_AUTHOR |
( |
"Gerd |
Knorr, |
|
|
Michal |
Kochanowicz, |
|
|
Christoph |
Bartelmus, |
|
|
""Ulrich |
Mueller, |
|
|
Stefan |
Jahn, |
|
|
Jerome |
Brock, |
|
|
Mark |
Weaver, |
|
|
""Andy Walls" |
|
|
) |
| |
module_exit |
( |
zilog_exit |
| ) |
|
module_init |
( |
zilog_init |
| ) |
|
module_param |
( |
tx_only |
, |
|
|
bool |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"Enable debugging messages" |
|
|
) |
| |