#include <linux/types.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/kernel.h>
#include <linux/bitops.h>
#include "av7110.h"
#include "av7110_hw.h"
Go to the source code of this file.
|
| module_param_array (ir_protocol, int, NULL, 0644) |
|
| MODULE_PARM_DESC (ir_protocol,"Infrared protocol: 0 RC5, 1 RCMM (default)") |
|
| module_param_array (ir_inversion, int, NULL, 0644) |
|
| MODULE_PARM_DESC (ir_inversion,"Inversion of infrared signal: 0 not inverted (default), 1 inverted") |
|
| module_param_array (ir_device_mask, uint, NULL, 0644) |
|
| MODULE_PARM_DESC (ir_device_mask,"Bitmask of infrared devices: bit 0..31 = device 0..31 (default: all)") |
|
int | av7110_check_ir_config (struct av7110 *av7110, int force) |
|
int __devinit | av7110_ir_init (struct av7110 *av7110) |
|
void __devexit | av7110_ir_exit (struct av7110 *av7110) |
|
#define IR_ALL 0xffffffff |
#define IR_RC5_EXT 2 /* internal only */ |
#define UP_TIMEOUT (HZ*7/25) |
module_param_array |
( |
ir_protocol |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0644 |
|
|
) |
| |
module_param_array |
( |
ir_inversion |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0644 |
|
|
) |
| |
module_param_array |
( |
ir_device_mask |
, |
|
|
uint |
, |
|
|
NULL |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ir_protocol |
, |
|
|
"Infrared protocol: 0 |
RC5, |
|
|
1 RCMM(default)" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ir_inversion |
, |
|
|
"Inversion of infrared signal: 0 not inverted |
default, |
|
|
1 inverted" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
ir_device_mask |
| ) |
|