2005-11-09 13:37:32 +08:00
|
|
|
#ifndef _IR_I2C
|
|
|
|
#define _IR_I2C
|
|
|
|
|
|
|
|
#include <media/ir-common.h>
|
|
|
|
|
|
|
|
struct IR_i2c;
|
|
|
|
|
|
|
|
struct IR_i2c {
|
|
|
|
IR_KEYTAB_TYPE *ir_codes;
|
2009-05-14 03:48:50 +08:00
|
|
|
struct i2c_client *c;
|
2005-11-09 13:37:32 +08:00
|
|
|
struct input_dev *input;
|
|
|
|
struct ir_input_state ir;
|
|
|
|
|
|
|
|
/* Used to avoid fast repeating */
|
|
|
|
unsigned char old;
|
|
|
|
|
2009-03-07 18:43:43 +08:00
|
|
|
struct delayed_work work;
|
2009-05-14 03:48:07 +08:00
|
|
|
char name[32];
|
2005-11-09 13:37:32 +08:00
|
|
|
char phys[32];
|
|
|
|
int (*get_key)(struct IR_i2c*, u32*, u32*);
|
|
|
|
};
|
2009-05-14 03:49:32 +08:00
|
|
|
|
|
|
|
/* Can be passed when instantiating an ir_video i2c device */
|
|
|
|
struct IR_i2c_init_data {
|
|
|
|
IR_KEYTAB_TYPE *ir_codes;
|
|
|
|
const char *name;
|
|
|
|
int (*get_key)(struct IR_i2c*, u32*, u32*);
|
|
|
|
};
|
2005-11-09 13:37:32 +08:00
|
|
|
#endif
|