From 5e55c322024397d71c86b1048b34a6d9463dae4b Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Thu, 23 Jul 2015 16:37:55 +0900 Subject: [PATCH] maru-camera: Except the camera driver when build with the extension The camera driver will be built using the source of the extension owns. Change-Id: I219d54ea13eca3a1eed70b24175c73dd7de51d04 Signed-off-by: Jinhyung Jo --- drivers/maru/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/maru/Makefile b/drivers/maru/Makefile index 9f3684deee21..e531c9340d47 100644 --- a/drivers/maru/Makefile +++ b/drivers/maru/Makefile @@ -1,6 +1,8 @@ ccflags-y += -Werror obj-$(CONFIG_MARU_VIRTIO_TOUCHSCREEN) += maru_virtio_touchscreen.o +ifndef CONFIG_MARU_EXTENSION_SOURCE obj-$(CONFIG_MARU_CAMERA) += maru_camera.o +endif obj-$(CONFIG_MARU_BACKLIGHT) += maru_bl.o obj-$(CONFIG_MARU_VIRTIO_HWKEY) += maru_virtio_hwkey.o obj-$(CONFIG_MARU_JACK) += maru_jack.o -- 2.34.1