At least core omapdss does not have any build dependencies on ARCH_OMAP2PLUS, and adding this dependency in the Kconfig breaks omapdrm for ARCH_MULTIPLATFORM builds.
Signed-off-by: Rob Clark <[email protected]> --- drivers/video/omap2/Kconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/video/omap2/Kconfig b/drivers/video/omap2/Kconfig index b07b2b0..011e549 100644 --- a/drivers/video/omap2/Kconfig +++ b/drivers/video/omap2/Kconfig @@ -1,9 +1,14 @@ config OMAP2_VRFB bool -if ARCH_OMAP2PLUS +if ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM source "drivers/video/omap2/dss/Kconfig" + +endif + +if ARCH_OMAP2PLUS + source "drivers/video/omap2/omapfb/Kconfig" source "drivers/video/omap2/displays/Kconfig" -- 1.8.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

