diff options
author | David Härdeman <david@hardeman.nu> | 2010-11-19 18:43:17 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:54 -0500 |
commit | 3938e0cfeb812e7b66f4e1cb6e34eb2e6864c6a2 (patch) | |
tree | 893f95970f5892889f29f21b2cc2d553fa659c96 /drivers/media/video/bt8xx/bttvp.h | |
parent | edb4c25ca3a7997660500692eca3510eac9726e5 (diff) |
[media] bttv: merge ir decoding timers
Similarly to saa7134, bttv_ir has two timers, only one of which is used
at a time and which serve the same purpose. Merge them.
Signed-off-by: David Härdeman <david@hardeman.nu>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/bt8xx/bttvp.h')
-rw-r--r-- | drivers/media/video/bt8xx/bttvp.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/bt8xx/bttvp.h b/drivers/media/video/bt8xx/bttvp.h index 3d5b2bc1d376..071232045605 100644 --- a/drivers/media/video/bt8xx/bttvp.h +++ b/drivers/media/video/bt8xx/bttvp.h | |||
@@ -122,6 +122,7 @@ struct bttv_format { | |||
122 | 122 | ||
123 | struct bttv_ir { | 123 | struct bttv_ir { |
124 | struct rc_dev *dev; | 124 | struct rc_dev *dev; |
125 | struct timer_list timer; | ||
125 | 126 | ||
126 | char name[32]; | 127 | char name[32]; |
127 | char phys[32]; | 128 | char phys[32]; |
@@ -136,11 +137,9 @@ struct bttv_ir { | |||
136 | int start; // What should RC5_START() be | 137 | int start; // What should RC5_START() be |
137 | int addr; // What RC5_ADDR() should be. | 138 | int addr; // What RC5_ADDR() should be. |
138 | int rc5_remote_gap; | 139 | int rc5_remote_gap; |
139 | struct timer_list timer; | ||
140 | 140 | ||
141 | /* RC5 gpio */ | 141 | /* RC5 gpio */ |
142 | u32 rc5_gpio; | 142 | u32 rc5_gpio; |
143 | struct timer_list timer_end; /* timer_end for code completion */ | ||
144 | u32 last_bit; /* last raw bit seen */ | 143 | u32 last_bit; /* last raw bit seen */ |
145 | u32 code; /* raw code under construction */ | 144 | u32 code; /* raw code under construction */ |
146 | struct timeval base_time; /* time of last seen code */ | 145 | struct timeval base_time; /* time of last seen code */ |