From 0d548a277c8ce29712161995985bb67cd1c35ff7 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 9 May 2011 10:40:24 -0400 Subject: [PATCH] OMAP2: avoid descending into disabled framebuffer dirs Rather than always add the omap2 dirs to the build list (and thus force everyone to generate a useless built-in.o), bind the dirs to their relevant kconfig symbol. Signed-off-by: Mike Frysinger Signed-off-by: Tomi Valkeinen --- drivers/video/omap2/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/video/omap2/Makefile b/drivers/video/omap2/Makefile index d853d05dad3..5ddef129f79 100644 --- a/drivers/video/omap2/Makefile +++ b/drivers/video/omap2/Makefile @@ -1,6 +1,6 @@ obj-$(CONFIG_OMAP2_VRAM) += vram.o obj-$(CONFIG_OMAP2_VRFB) += vrfb.o -obj-y += dss/ -obj-y += omapfb/ +obj-$(CONFIG_OMAP2_DSS) += dss/ +obj-$(CONFIG_FB_OMAP2) += omapfb/ obj-y += displays/ -- 2.11.4.GIT