diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-08-24 00:32:31 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:08:31 -0400 |
commit | 6fcecce7e1a5223be450031fa446323b08d1ec41 (patch) | |
tree | 43302e0312699669b5ce74c0702024552a840c4d /drivers | |
parent | a1dec5160d6e536b409761c1914500f4a7cf08c2 (diff) |
V4L/DVB (6181): cx88: auto-load rtc and ir receiver i2c modules for FusionHDTV5 RT Gold
Auto-load ir-kbd-i2c for ir receiver support, and rtc-isl1208 for rtc
support for the FusionHDTV5 RT Gold.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/cx88/cx88-video.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-video.c b/drivers/media/video/cx88/cx88-video.c index a16fc157a67d..f94a3b41782a 100644 --- a/drivers/media/video/cx88/cx88-video.c +++ b/drivers/media/video/cx88/cx88-video.c | |||
@@ -1831,6 +1831,12 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev, | |||
1831 | if (core->board.audio_chip == AUDIO_CHIP_WM8775) | 1831 | if (core->board.audio_chip == AUDIO_CHIP_WM8775) |
1832 | request_module("wm8775"); | 1832 | request_module("wm8775"); |
1833 | 1833 | ||
1834 | switch (core->boardnr) { | ||
1835 | case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD: | ||
1836 | request_module("ir-kbd-i2c"); | ||
1837 | request_module("rtc-isl1208"); | ||
1838 | } | ||
1839 | |||
1834 | /* register v4l devices */ | 1840 | /* register v4l devices */ |
1835 | dev->video_dev = cx88_vdev_init(core,dev->pci, | 1841 | dev->video_dev = cx88_vdev_init(core,dev->pci, |
1836 | &cx8800_video_template,"video"); | 1842 | &cx8800_video_template,"video"); |