diff options
author | Mark Weaver <mark-clist@npsl.co.uk> | 2005-11-13 19:07:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-13 21:14:18 -0500 |
commit | 6c6c0b2c27e70c3593e023882fabb1cebcbd077e (patch) | |
tree | 30b0969ef62e3094362e4057663bac872bd0a44f /drivers/media/video/bttv.h | |
parent | 871242b93e75b24c99687249c2812aed026b40af (diff) |
[PATCH] v4l: (939) Support for nebula rc5 based gpio remote
Support for Nebula rc5-based gpio remote.
Signed-off-by: Mark Weaver <mark-clist@npsl.co.uk>
Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/bttv.h')
-rw-r--r-- | drivers/media/video/bttv.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/bttv.h b/drivers/media/video/bttv.h index c1825248beb5..93298f06e019 100644 --- a/drivers/media/video/bttv.h +++ b/drivers/media/video/bttv.h | |||
@@ -235,6 +235,7 @@ struct tvcard | |||
235 | unsigned int has_dvb:1; | 235 | unsigned int has_dvb:1; |
236 | unsigned int has_remote:1; | 236 | unsigned int has_remote:1; |
237 | unsigned int no_gpioirq:1; | 237 | unsigned int no_gpioirq:1; |
238 | unsigned int any_irq:1; | ||
238 | 239 | ||
239 | /* other settings */ | 240 | /* other settings */ |
240 | unsigned int pll; | 241 | unsigned int pll; |
@@ -334,6 +335,7 @@ struct bttv_sub_driver { | |||
334 | struct device_driver drv; | 335 | struct device_driver drv; |
335 | char wanted[BUS_ID_SIZE]; | 336 | char wanted[BUS_ID_SIZE]; |
336 | void (*gpio_irq)(struct bttv_sub_device *sub); | 337 | void (*gpio_irq)(struct bttv_sub_device *sub); |
338 | int (*any_irq)(struct bttv_sub_device *sub); | ||
337 | }; | 339 | }; |
338 | #define to_bttv_sub_drv(x) container_of((x), struct bttv_sub_driver, drv) | 340 | #define to_bttv_sub_drv(x) container_of((x), struct bttv_sub_driver, drv) |
339 | 341 | ||