Message ID | 1304952024-28296-1-git-send-email-vapier@gentoo.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, 2011-05-09 at 10:40 -0400, Mike Frysinger wrote: > 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> > --- > 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 d853d05..5ddef12 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/ Looks fine to me, applying to DSS tree. Thanks! Tomi -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/video/omap2/Makefile b/drivers/video/omap2/Makefile index d853d05..5ddef12 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/
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> --- drivers/video/omap2/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)