#include <linux/init.h>
#include <linux/hrtimer.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/module.h>
#include "cx88.h"
#include <media/rc-core.h>
Go to the source code of this file.
|
| module_param (ir_samplerate, uint, 0444) |
|
| MODULE_PARM_DESC (ir_samplerate,"IR samplerate in kHz, 1 - 20, default 4") |
|
| module_param (ir_debug, int, 0644) |
|
| MODULE_PARM_DESC (ir_debug,"enable debug messages [IR]") |
|
int | cx88_ir_start (struct cx88_core *core) |
|
void | cx88_ir_stop (struct cx88_core *core) |
|
int | cx88_ir_init (struct cx88_core *core, struct pci_dev *pci) |
|
int | cx88_ir_fini (struct cx88_core *core) |
|
void | cx88_ir_irq (struct cx88_core *core) |
|
void | cx88_i2c_init_ir (struct cx88_core *core) |
|
| MODULE_AUTHOR ("Gerd Knorr, Pavel Machek, Chris Pascoe") |
|
| MODULE_DESCRIPTION ("input driver for cx88 GPIO-based IR remote controls") |
|
| MODULE_LICENSE ("GPL") |
|
#define dprintk |
( |
|
fmt, |
|
|
|
arg... |
|
) |
| |
#define ir_dprintk |
( |
|
fmt, |
|
|
|
arg... |
|
) |
| |
#define MODULE_NAME "cx88xx" |
MODULE_AUTHOR |
( |
"Gerd |
Knorr, |
|
|
Pavel |
Machek, |
|
|
Chris Pascoe" |
|
|
) |
| |
module_param |
( |
ir_samplerate |
, |
|
|
uint |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
ir_debug |
, |
|
|
int |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ir_samplerate |
, |
|
|
"IR samplerate in |
kHz, |
|
|
1- |
20, |
|
|
default 4" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ir_debug |
, |
|
|
"enable debug messages " |
[IR] |
|
) |
| |