Commit 4907c73d authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

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: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 58757984
config VIDEO_DM365_VPFE config VIDEO_DM365_VPFE
tristate "DM365 VPFE Media Controller Capture Driver" 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 HAS_DMA
depends on VIDEO_V4L2_SUBDEV_API depends on VIDEO_V4L2_SUBDEV_API
depends on VIDEO_DAVINCI_VPBE_DISPLAY depends on VIDEO_DAVINCI_VPBE_DISPLAY
......
...@@ -3,3 +3,8 @@ obj-$(CONFIG_VIDEO_DM365_VPFE) += davinci-vfpe.o ...@@ -3,3 +3,8 @@ obj-$(CONFIG_VIDEO_DM365_VPFE) += davinci-vfpe.o
davinci-vfpe-objs := \ davinci-vfpe-objs := \
dm365_isif.o dm365_ipipe_hw.o dm365_ipipe.o \ dm365_isif.o dm365_ipipe_hw.o dm365_ipipe.o \
dm365_resizer.o dm365_ipipeif.o vpfe_mc_capture.o vpfe_video.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): ...@@ -20,6 +20,7 @@ TODO (general):
- While replacing the older driver in media folder, provide a compatibility - While replacing the older driver in media folder, provide a compatibility
layer and compatibility tests that warrants (using the libv4l's LD_PRELOAD layer and compatibility tests that warrants (using the libv4l's LD_PRELOAD
approach) there is no regression for the users using the older driver. 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: Building of uImage and Applications:
================================== ==================================
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment