diff options
| author | Oliver Endriss <o.endriss@gmx.de> | 2011-07-03 17:25:29 -0400 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 16:55:45 -0400 |
| commit | f876502d9a24934eadce0c8a8c45bfb863e46bb4 (patch) | |
| tree | a6ca4763d53fc29406e2ef8941355b636ea25b13 /drivers/media/dvb | |
| parent | 4f1f31078745b7af73e1a3a718004807cb1b7846 (diff) | |
[media] ddbridge: Allow compiling of the driver
Driver added to Makefile and Kconfig.
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
| -rw-r--r-- | drivers/media/dvb/Kconfig | 4 | ||||
| -rw-r--r-- | drivers/media/dvb/Makefile | 3 | ||||
| -rw-r--r-- | drivers/media/dvb/ddbridge/Kconfig | 18 | ||||
| -rw-r--r-- | drivers/media/dvb/ddbridge/Makefile | 14 |
4 files changed, 38 insertions, 1 deletions
diff --git a/drivers/media/dvb/Kconfig b/drivers/media/dvb/Kconfig index ee214c3b63d7..f6e40b3a44cc 100644 --- a/drivers/media/dvb/Kconfig +++ b/drivers/media/dvb/Kconfig | |||
| @@ -80,6 +80,10 @@ comment "Supported nGene Adapters" | |||
| 80 | depends on DVB_CORE && PCI && I2C | 80 | depends on DVB_CORE && PCI && I2C |
| 81 | source "drivers/media/dvb/ngene/Kconfig" | 81 | source "drivers/media/dvb/ngene/Kconfig" |
| 82 | 82 | ||
| 83 | comment "Supported ddbridge ('Octopus') Adapters" | ||
| 84 | depends on DVB_CORE && PCI && I2C | ||
| 85 | source "drivers/media/dvb/ddbridge/Kconfig" | ||
| 86 | |||
| 83 | comment "Supported DVB Frontends" | 87 | comment "Supported DVB Frontends" |
| 84 | depends on DVB_CORE | 88 | depends on DVB_CORE |
| 85 | source "drivers/media/dvb/frontends/Kconfig" | 89 | source "drivers/media/dvb/frontends/Kconfig" |
diff --git a/drivers/media/dvb/Makefile b/drivers/media/dvb/Makefile index a1a08758a6f2..b2cefe637a64 100644 --- a/drivers/media/dvb/Makefile +++ b/drivers/media/dvb/Makefile | |||
| @@ -15,6 +15,7 @@ obj-y := dvb-core/ \ | |||
| 15 | dm1105/ \ | 15 | dm1105/ \ |
| 16 | pt1/ \ | 16 | pt1/ \ |
| 17 | mantis/ \ | 17 | mantis/ \ |
| 18 | ngene/ | 18 | ngene/ \ |
| 19 | ddbridge/ | ||
| 19 | 20 | ||
| 20 | obj-$(CONFIG_DVB_FIREDTV) += firewire/ | 21 | obj-$(CONFIG_DVB_FIREDTV) += firewire/ |
diff --git a/drivers/media/dvb/ddbridge/Kconfig b/drivers/media/dvb/ddbridge/Kconfig new file mode 100644 index 000000000000..d099e1a12c85 --- /dev/null +++ b/drivers/media/dvb/ddbridge/Kconfig | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | config DVB_DDBRIDGE | ||
| 2 | tristate "Digital Devices bridge support" | ||
| 3 | depends on DVB_CORE && PCI && I2C | ||
| 4 | select DVB_LNBP21 if !DVB_FE_CUSTOMISE | ||
| 5 | select DVB_STV6110x if !DVB_FE_CUSTOMISE | ||
| 6 | select DVB_STV090x if !DVB_FE_CUSTOMISE | ||
| 7 | select DVB_DRXK if !DVB_FE_CUSTOMISE | ||
| 8 | select DVB_TDA18271C2DD if !DVB_FE_CUSTOMISE | ||
| 9 | ---help--- | ||
| 10 | Support for cards with the Digital Devices PCI express bridge: | ||
| 11 | - Octopus PCIe Bridge | ||
| 12 | - Octopus mini PCIe Bridge | ||
| 13 | - Octopus LE | ||
| 14 | - DuoFlex S2 Octopus | ||
| 15 | - DuoFlex CT Octopus | ||
| 16 | - cineS2(v6) | ||
| 17 | |||
| 18 | Say Y if you own such a card and want to use it. | ||
diff --git a/drivers/media/dvb/ddbridge/Makefile b/drivers/media/dvb/ddbridge/Makefile new file mode 100644 index 000000000000..de4fe193c3ef --- /dev/null +++ b/drivers/media/dvb/ddbridge/Makefile | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | # | ||
| 2 | # Makefile for the ddbridge device driver | ||
| 3 | # | ||
| 4 | |||
| 5 | ddbridge-objs := ddbridge-core.o | ||
| 6 | |||
| 7 | obj-$(CONFIG_DVB_DDBRIDGE) += ddbridge.o | ||
| 8 | |||
| 9 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ | ||
| 10 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends/ | ||
| 11 | EXTRA_CFLAGS += -Idrivers/media/common/tuners/ | ||
| 12 | |||
| 13 | # For the staging CI driver cxd2099 | ||
| 14 | EXTRA_CFLAGS += -Idrivers/staging/cxd2099/ | ||
