-
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: 131742 b: refs/heads/master c: 21209b6 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Feb 24, 2009
1 parent
b687105
commit c1be882
Showing
21 changed files
with
2,952 additions
and
9 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: 531660ef5604c75de6fdead9da1304051af17c09 | ||
refs/heads/master: 21209b61b0ca0aafb04b5ab3561e3c8e7c7f776d |
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
|
||
#include <asm/types.h> | ||
|
||
struct file; | ||
struct pci_dev; | ||
struct scatterlist; | ||
struct vm_area_struct; | ||
|
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
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
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,22 @@ | ||
config DVB_FIREDTV | ||
tristate "FireDTV and FloppyDTV" | ||
depends on DVB_CORE && IEEE1394 | ||
help | ||
Support for DVB receivers from Digital Everywhere | ||
which are connected via IEEE 1394 (FireWire). | ||
|
||
These devices don't have an MPEG decoder built in, | ||
so you need an external software decoder to watch TV. | ||
|
||
To compile this driver as a module, say M here: | ||
the module will be called firedtv. | ||
|
||
if DVB_FIREDTV | ||
|
||
config DVB_FIREDTV_IEEE1394 | ||
def_bool IEEE1394 | ||
|
||
config DVB_FIREDTV_INPUT | ||
def_bool INPUT = y || (INPUT = m && DVB_FIREDTV = m) | ||
|
||
endif # DVB_FIREDTV |
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,8 @@ | ||
obj-$(CONFIG_DVB_FIREDTV) += firedtv.o | ||
|
||
firedtv-y := firedtv-avc.o firedtv-ci.o firedtv-dvb.o firedtv-fe.o | ||
firedtv-$(CONFIG_DVB_FIREDTV_IEEE1394) += firedtv-1394.o | ||
firedtv-$(CONFIG_DVB_FIREDTV_INPUT) += firedtv-rc.o | ||
|
||
ccflags-y += -Idrivers/media/dvb/dvb-core | ||
ccflags-$(CONFIG_DVB_FIREDTV_IEEE1394) += -Idrivers/ieee1394 |
Oops, something went wrong.