diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-23 11:17:30 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-23 11:17:30 -0300 |
commit | ed97b0da67163cb14799b2b512a4e76d95ad2e7f (patch) | |
tree | c819d086be39062a1325ec61a8ba3cb7f7a94810 /linux/drivers/media/video/bt8xx | |
parent | df7e54a424a041e994e12a5dd7e7c577de34142a (diff) | |
download | mediapointer-dvb-s2-ed97b0da67163cb14799b2b512a4e76d95ad2e7f.tar.gz mediapointer-dvb-s2-ed97b0da67163cb14799b2b512a4e76d95ad2e7f.tar.bz2 |
Fix an error when loading bttv driver on PV M4900.
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Previously, this were reported:
Ooops: IR config error [card=139]
Thanks-to: Hermann Pitton <hermann-pitton@arcor.de> for the solution.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/bt8xx')
-rw-r--r-- | linux/drivers/media/video/bt8xx/bttv-input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/video/bt8xx/bttv-input.c b/linux/drivers/media/video/bt8xx/bttv-input.c index ce5ce470a..43bc6805b 100644 --- a/linux/drivers/media/video/bt8xx/bttv-input.c +++ b/linux/drivers/media/video/bt8xx/bttv-input.c @@ -304,6 +304,7 @@ int bttv_input_init(struct bttv *btv) ir->mask_keyup = 0x010000; ir->polling = 50; // ms break; + case BTTV_BOARD_PV_M4900: case BTTV_BOARD_PV_BT878P_9B: case BTTV_BOARD_PV_BT878P_PLUS: ir_codes = ir_codes_pixelview; |