Message ID | 8762qz79o7.fsf@nemi.mork.no (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Op 31-3-2011 14:32, Bjørn Mork schreef: > Jos Hoekstra<joshoekstra@gmx.net> writes: > >> I got this card and it doesn't seem to be detected by Ubuntu 10.4.2 >> with kernel 2.6.35(-25-generic #44~lucid1-Ubuntu SMP Tue Jan 25 >> 19:17:25 UTC 2011 x86_64 GNU/Linux) >> >> The wiki seems to indicate that this card is supported as of kernel >> 2.6.33, however it doesn't show up as a dvb-adapter. > [..] >> After rebooting it however seems I need to manually modprobe mantis >> and restart the backend to have mythtv work with this card. Is there a >> way to make these modules load automatically after a reboot? > The best way to work around the problem until you upgrade your kernel to > 2.6.38 or newer, is probably just adding mantis to /etc/modules. > > > Bjørn This work-around solved this little issue for me, thanks :) Is there a how-to for handing in initial scan-files or complete scans? I'm on fiber and afaik this goes for the whole network excluding local stations. Thanks, Jos Hoekstra -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/media/dvb/mantis/hopper_cards.c b/drivers/media/dvb/mantis/hopper_cards.c index 09e9fc7..70e73af 100644 --- a/drivers/media/dvb/mantis/hopper_cards.c +++ b/drivers/media/dvb/mantis/hopper_cards.c @@ -251,6 +251,8 @@ static struct pci_device_id hopper_pci_table[] = { { } }; +MODULE_DEVICE_TABLE(pci, hopper_pci_table); + static struct pci_driver hopper_pci_driver = { .name = DRIVER_NAME, .id_table = hopper_pci_table, diff --git a/drivers/media/dvb/mantis/mantis_cards.c b/drivers/media/dvb/mantis/mantis_cards.c index cf4b39f..40da225 100644 --- a/drivers/media/dvb/mantis/mantis_cards.c +++ b/drivers/media/dvb/mantis/mantis_cards.c @@ -281,6 +281,8 @@ static struct pci_device_id mantis_pci_table[] = { { } }; +MODULE_DEVICE_TABLE(pci, mantis_pci_table); + static struct pci_driver mantis_pci_driver = { .name = DRIVER_NAME, .id_table = mantis_pci_table,