mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-13 14:04:05 +08:00
media: staging: davinci_vpfe: allow building with COMPILE_TEST
This is a little bit hashish, but this driver is at staging, so it won't become worse. With this small change at Makefile, we can now build it with COMPILE_TEST. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
58757984ca
commit
4907c73dee
@ -1,6 +1,7 @@
|
||||
config VIDEO_DM365_VPFE
|
||||
tristate "DM365 VPFE Media Controller Capture Driver"
|
||||
depends on VIDEO_V4L2 && ARCH_DAVINCI_DM365 && !VIDEO_DM365_ISIF
|
||||
depends on VIDEO_V4L2
|
||||
depends on (ARCH_DAVINCI_DM365 && !VIDEO_DM365_ISIF) || COMPILE_TEST
|
||||
depends on HAS_DMA
|
||||
depends on VIDEO_V4L2_SUBDEV_API
|
||||
depends on VIDEO_DAVINCI_VPBE_DISPLAY
|
||||
|
@ -3,3 +3,8 @@ obj-$(CONFIG_VIDEO_DM365_VPFE) += davinci-vfpe.o
|
||||
davinci-vfpe-objs := \
|
||||
dm365_isif.o dm365_ipipe_hw.o dm365_ipipe.o \
|
||||
dm365_resizer.o dm365_ipipeif.o vpfe_mc_capture.o vpfe_video.o
|
||||
|
||||
# Allow building it with COMPILE_TEST on other archs
|
||||
ifndef CONFIG_ARCH_DAVINCI
|
||||
ccflags-y += -Iarch/arm/mach-davinci/include/
|
||||
endif
|
||||
|
@ -20,6 +20,7 @@ TODO (general):
|
||||
- While replacing the older driver in media folder, provide a compatibility
|
||||
layer and compatibility tests that warrants (using the libv4l's LD_PRELOAD
|
||||
approach) there is no regression for the users using the older driver.
|
||||
- make it independent of arch-specific APIs (mach/mux.h).
|
||||
|
||||
Building of uImage and Applications:
|
||||
==================================
|
||||
|
Loading…
Reference in New Issue
Block a user