mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
V4L/DVB (11611): soc-camera: link host drivers after clients
With the transition of soc-camera to become a platform driver and to the v4l2-subdev framework the initialisation order becomes important. In case of a static build clients (i2c) drivers have to be available when host drivers are probed. Moving host drivers down in the Makefile achieves the desired order. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
9538e1c226
commit
c09b77806e
1 changed files with 5 additions and 4 deletions
|
@ -134,10 +134,6 @@ obj-$(CONFIG_VIDEO_CX18) += cx18/
|
||||||
obj-$(CONFIG_VIDEO_VIVI) += vivi.o
|
obj-$(CONFIG_VIDEO_VIVI) += vivi.o
|
||||||
obj-$(CONFIG_VIDEO_CX23885) += cx23885/
|
obj-$(CONFIG_VIDEO_CX23885) += cx23885/
|
||||||
|
|
||||||
obj-$(CONFIG_VIDEO_MX1) += mx1_camera.o
|
|
||||||
obj-$(CONFIG_VIDEO_MX3) += mx3_camera.o
|
|
||||||
obj-$(CONFIG_VIDEO_PXA27x) += pxa_camera.o
|
|
||||||
obj-$(CONFIG_VIDEO_SH_MOBILE_CEU) += sh_mobile_ceu_camera.o
|
|
||||||
obj-$(CONFIG_VIDEO_OMAP2) += omap2cam.o
|
obj-$(CONFIG_VIDEO_OMAP2) += omap2cam.o
|
||||||
obj-$(CONFIG_SOC_CAMERA) += soc_camera.o
|
obj-$(CONFIG_SOC_CAMERA) += soc_camera.o
|
||||||
obj-$(CONFIG_SOC_CAMERA_MT9M001) += mt9m001.o
|
obj-$(CONFIG_SOC_CAMERA_MT9M001) += mt9m001.o
|
||||||
|
@ -147,6 +143,11 @@ obj-$(CONFIG_SOC_CAMERA_MT9V022) += mt9v022.o
|
||||||
obj-$(CONFIG_SOC_CAMERA_OV772X) += ov772x.o
|
obj-$(CONFIG_SOC_CAMERA_OV772X) += ov772x.o
|
||||||
obj-$(CONFIG_SOC_CAMERA_PLATFORM) += soc_camera_platform.o
|
obj-$(CONFIG_SOC_CAMERA_PLATFORM) += soc_camera_platform.o
|
||||||
obj-$(CONFIG_SOC_CAMERA_TW9910) += tw9910.o
|
obj-$(CONFIG_SOC_CAMERA_TW9910) += tw9910.o
|
||||||
|
# soc-camera host drivers have to be linked after camera drivers
|
||||||
|
obj-$(CONFIG_VIDEO_MX1) += mx1_camera.o
|
||||||
|
obj-$(CONFIG_VIDEO_MX3) += mx3_camera.o
|
||||||
|
obj-$(CONFIG_VIDEO_PXA27x) += pxa_camera.o
|
||||||
|
obj-$(CONFIG_VIDEO_SH_MOBILE_CEU) += sh_mobile_ceu_camera.o
|
||||||
|
|
||||||
obj-$(CONFIG_VIDEO_AU0828) += au0828/
|
obj-$(CONFIG_VIDEO_AU0828) += au0828/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue