mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
msm: camera: reorganize directory structure
Change-Id: Ice4b29a8e88b395025706f44a1851003b8be4e0b Signed-off-by: Shuzhen Wang <shuzhenw@codeaurora.org>
This commit is contained in:
parent
cf4198a2e3
commit
f8efeb8182
280 changed files with 113 additions and 110 deletions
|
@ -106,6 +106,8 @@ comment "Multimedia drivers"
|
|||
source "drivers/media/common/Kconfig"
|
||||
source "drivers/media/rc/Kconfig"
|
||||
|
||||
source "drivers/media/platform/Kconfig"
|
||||
|
||||
#
|
||||
# Tuner drivers for DVB and V4L
|
||||
#
|
||||
|
|
|
@ -8,7 +8,7 @@ ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
|
|||
obj-$(CONFIG_MEDIA_SUPPORT) += media.o
|
||||
endif
|
||||
|
||||
obj-y += common/ rc/ video/
|
||||
obj-y += common/ platform/ rc/ video/
|
||||
|
||||
obj-$(CONFIG_VIDEO_DEV) += radio/
|
||||
obj-$(CONFIG_DVB_CORE) += dvb/
|
||||
|
|
1
drivers/media/platform/Kconfig
Normal file
1
drivers/media/platform/Kconfig
Normal file
|
@ -0,0 +1 @@
|
|||
source "drivers/media/platform/msm/Kconfig"
|
1
drivers/media/platform/Makefile
Normal file
1
drivers/media/platform/Makefile
Normal file
|
@ -0,0 +1 @@
|
|||
obj-y += msm/
|
43
drivers/media/platform/msm/Kconfig
Normal file
43
drivers/media/platform/msm/Kconfig
Normal file
|
@ -0,0 +1,43 @@
|
|||
#
|
||||
# MSM camera configuration
|
||||
#
|
||||
|
||||
comment "Qualcomm MSM Camera And Video"
|
||||
|
||||
menuconfig MSM_CAMERA
|
||||
bool "Qualcomm MSM camera and video capture support"
|
||||
depends on ARCH_MSM && VIDEO_V4L2 && I2C
|
||||
default y
|
||||
help
|
||||
Say Y here to enable selecting the video adapters for
|
||||
Qualcomm msm camera and video encoding
|
||||
|
||||
config MSM_CAMERA_DEBUG
|
||||
bool "Qualcomm MSM camera debugging with printk"
|
||||
depends on MSM_CAMERA
|
||||
default n
|
||||
help
|
||||
Enable printk() debug for msm camera
|
||||
|
||||
if MSM_CAMERA
|
||||
source "drivers/media/platform/msm/camera_v1/Kconfig"
|
||||
endif # MSM_CAMERA
|
||||
|
||||
menuconfig MSMB_CAMERA
|
||||
bool "Qualcomm MSM camera and video capture 2.0 support"
|
||||
depends on ARCH_MSM && VIDEO_V4L2 && I2C
|
||||
---help---
|
||||
Say Y here to enable selecting the video adapters for
|
||||
Qualcomm msm camera and video capture 2.0, enabling this
|
||||
adds support for the camera driver stack including sensor, isp
|
||||
and postprocessing drivers.
|
||||
|
||||
config MSMB_CAMERA_DEBUG
|
||||
bool "Qualcomm MSM camera 2.0 debugging with printk"
|
||||
depends on MSMB_CAMERA
|
||||
---help---
|
||||
Enable printk() debug for msm camera 2.0
|
||||
|
||||
if MSMB_CAMERA
|
||||
source "drivers/media/platform/msm/camera_v2/Kconfig"
|
||||
endif # MSMB_CAMERA
|
2
drivers/media/platform/msm/Makefile
Normal file
2
drivers/media/platform/msm/Makefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
obj-$(CONFIG_MSM_CAMERA) += camera_v1/
|
||||
obj-$(CONFIG_MSMB_CAMERA) += camera_v2/
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue