diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-05-09 10:40:24 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 07:20:53 -0400 |
commit | 0d548a277c8ce29712161995985bb67cd1c35ff7 (patch) | |
tree | e897e722310071e35c9c50bfbf644267a1ec3777 /drivers/video/omap2 | |
parent | 44538b431517ebf4b0e8574cb727deb1a73652c8 (diff) |
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 <vapier@gentoo.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2')
-rw-r--r-- | drivers/video/omap2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/omap2/Makefile b/drivers/video/omap2/Makefile index d853d05dad31..5ddef129f798 100644 --- a/drivers/video/omap2/Makefile +++ b/drivers/video/omap2/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | obj-$(CONFIG_OMAP2_VRAM) += vram.o | 1 | obj-$(CONFIG_OMAP2_VRAM) += vram.o |
2 | obj-$(CONFIG_OMAP2_VRFB) += vrfb.o | 2 | obj-$(CONFIG_OMAP2_VRFB) += vrfb.o |
3 | 3 | ||
4 | obj-y += dss/ | 4 | obj-$(CONFIG_OMAP2_DSS) += dss/ |
5 | obj-y += omapfb/ | 5 | obj-$(CONFIG_FB_OMAP2) += omapfb/ |
6 | obj-y += displays/ | 6 | obj-y += displays/ |