4 #include <media/rc-core.h>
6 #define DEFAULT_POLLING_INTERVAL 100 /* ms */
15 /* Used to avoid fast repeating */
18 u32 polling_interval
; /* in ms */
20 struct delayed_work work
;
23 int (*get_key
)(struct IR_i2c
*ir
, enum rc_type
*protocol
,
24 u32
*scancode
, u8
*toggle
);
27 enum ir_kbd_get_key_fn
{
28 IR_KBD_GET_KEY_CUSTOM
= 0,
29 IR_KBD_GET_KEY_PIXELVIEW
,
32 IR_KBD_GET_KEY_FUSIONHDTV
,
33 IR_KBD_GET_KEY_HAUP_XVR
,
34 IR_KBD_GET_KEY_AVERMEDIA_CARDBUS
,
37 /* Can be passed when instantiating an ir_video i2c device */
38 struct IR_i2c_init_data
{
41 u64 type
; /* RC_BIT_RC5, etc */
42 u32 polling_interval
; /* 0 means DEFAULT_POLLING_INTERVAL */
45 * Specify either a function pointer or a value indicating one of
46 * ir_kbd_i2c's internal get_key functions
48 int (*get_key
)(struct IR_i2c
*ir
, enum rc_type
*protocol
,
49 u32
*scancode
, u8
*toggle
);
50 enum ir_kbd_get_key_fn internal_get_key_func
;
52 struct rc_dev
*rc_dev
;