forked from torvalds/linux
-
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.
[media] omap3isp: Kconfig and Makefile
Add the OMAP3 ISP driver to the kernel build system. Signed-off-by: Laurent Pinchart <[email protected]> Acked-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
- Loading branch information
Showing
5 changed files
with
35 additions
and
0 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 |
---|---|---|
|
@@ -4556,6 +4556,12 @@ L: [email protected] | |
S: Maintained | ||
F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | ||
|
||
OMAP IMAGE SIGNAL PROCESSOR (ISP) | ||
M: Laurent Pinchart <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/media/video/omap3isp/* | ||
|
||
OMAP USB SUPPORT | ||
M: Felipe Balbi <[email protected]> | ||
M: David Brownell <[email protected]> | ||
|
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,13 @@ | ||
# Makefile for OMAP3 ISP driver | ||
|
||
ifdef CONFIG_VIDEO_OMAP3_DEBUG | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif | ||
|
||
omap3-isp-objs += \ | ||
isp.o ispqueue.o ispvideo.o \ | ||
ispcsiphy.o ispccp2.o ispcsi2.o \ | ||
ispccdc.o isppreview.o ispresizer.o \ | ||
ispstat.o isph3a_aewb.o isph3a_af.o isphist.o | ||
|
||
obj-$(CONFIG_VIDEO_OMAP3) += omap3-isp.o |
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