-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 261496 b: refs/heads/master c: f876502 h: refs/heads/master v: v3
- Loading branch information
Oliver Endriss
authored and
Mauro Carvalho Chehab
committed
Jul 27, 2011
1 parent
7c6a7df
commit f9a072f
Showing
5 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4f1f31078745b7af73e1a3a718004807cb1b7846 | ||
refs/heads/master: f876502d9a24934eadce0c8a8c45bfb863e46bb4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
config DVB_DDBRIDGE | ||
tristate "Digital Devices bridge support" | ||
depends on DVB_CORE && PCI && I2C | ||
select DVB_LNBP21 if !DVB_FE_CUSTOMISE | ||
select DVB_STV6110x if !DVB_FE_CUSTOMISE | ||
select DVB_STV090x if !DVB_FE_CUSTOMISE | ||
select DVB_DRXK if !DVB_FE_CUSTOMISE | ||
select DVB_TDA18271C2DD if !DVB_FE_CUSTOMISE | ||
---help--- | ||
Support for cards with the Digital Devices PCI express bridge: | ||
- Octopus PCIe Bridge | ||
- Octopus mini PCIe Bridge | ||
- Octopus LE | ||
- DuoFlex S2 Octopus | ||
- DuoFlex CT Octopus | ||
- cineS2(v6) | ||
|
||
Say Y if you own such a card and want to use it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# | ||
# Makefile for the ddbridge device driver | ||
# | ||
|
||
ddbridge-objs := ddbridge-core.o | ||
|
||
obj-$(CONFIG_DVB_DDBRIDGE) += ddbridge.o | ||
|
||
EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ | ||
EXTRA_CFLAGS += -Idrivers/media/dvb/frontends/ | ||
EXTRA_CFLAGS += -Idrivers/media/common/tuners/ | ||
|
||
# For the staging CI driver cxd2099 | ||
EXTRA_CFLAGS += -Idrivers/staging/cxd2099/ |