-
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.
V4L/DVB (3495): Kconfig: select VIDEO_CX25840 to build cx25840 a/v de…
…coder module The cx25840 module requires external firmware in order to function, so it must select FW_LOADER, but saa7115 and saa7129 do not require it. This patch creates VIDEO_CX25840, and alters VIDEO_DECODER to select it. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
- Loading branch information
Michael Krufky
authored and
Linus Torvalds
committed
Mar 21, 2006
1 parent
31dcbf9
commit f6fe8c6
Showing
4 changed files
with
15 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
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,9 @@ | ||
config VIDEO_CX25840 | ||
tristate "Conexant CX2584x audio/video decoders" | ||
depends on VIDEO_DEV && I2C && EXPERIMENTAL | ||
select FW_LOADER | ||
---help--- | ||
Support for the Conexant CX2584x audio/video decoders. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called cx25840 |
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,6 +1,6 @@ | ||
cx25840-objs := cx25840-core.o cx25840-audio.o cx25840-firmware.o \ | ||
cx25840-vbi.o | ||
|
||
obj-$(CONFIG_VIDEO_DECODER) += cx25840.o | ||
obj-$(CONFIG_VIDEO_CX25840) += cx25840.o | ||
|
||
EXTRA_CFLAGS += -I$(src)/.. |