diff options
author | Michael Hunold <devnull@localhost> | 2003-01-08 17:41:32 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-01-08 17:41:32 +0000 |
commit | d166085ef7eea32af71c4c20321f067a38bb394a (patch) | |
tree | 1cb9582a6374cdd92b69bd264d7fc7e1b1a43459 /linux/drivers/media/common/Kconfig | |
parent | c968f1b52110e481ca9e183729b3a6ad6a2d3aeb (diff) | |
download | mediapointer-dvb-s2-d166085ef7eea32af71c4c20321f067a38bb394a.tar.gz mediapointer-dvb-s2-d166085ef7eea32af71c4c20321f067a38bb394a.tar.bz2 |
Removed the whole "device<=>extension" matching crap, the pci subsystem
can do this much better. We now simply register one pci driver for
every extension and are done with it -- if a device actually exists, the
pci subsystem calls us back. That's it.
Warning: this triggers a bug in the 2.5.x module subsystem -- you should
*not* use the driver.av7110 script and modprobe the driver. You can
a) build your kernel staticall
b) insert the modules one by one with *insmod*
I already filed a bug report to lkml.
Fixed a bug in Kconfig which prevented the saa7146 modules from being build.
Diffstat (limited to 'linux/drivers/media/common/Kconfig')
-rw-r--r-- | linux/drivers/media/common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/common/Kconfig b/linux/drivers/media/common/Kconfig index 87edcbb98..206ab6ea0 100644 --- a/linux/drivers/media/common/Kconfig +++ b/linux/drivers/media/common/Kconfig @@ -1,7 +1,7 @@ config VIDEO_SAA7146 tristate default y if DVB_AV7110=y || DVB_BUDGET=y || DVB_BUDGET_AV=y || VIDEO_MXB=y - default m if DVB_AV7110=y || DVB_BUDGET=m || DVB_BUDGET_AV=m || VIDEO_MXB=m + default m if DVB_AV7110=m || DVB_BUDGET=m || DVB_BUDGET_AV=m || VIDEO_MXB=m depends on VIDEO_DEV && PCI config VIDEO_VIDEOBUF |