All of lore.kernel.org
 help / color / mirror / Atom feed
* OMAP4 build error - omapfb
@ 2010-12-02 21:25 ` Russell King - ARM Linux
  0 siblings, 0 replies; 8+ messages in thread
From: Russell King - ARM Linux @ 2010-12-02 21:25 UTC (permalink / raw)
  To: linux-arm-kernel, linux-omap

drivers/built-in.o: In function `omapfb_do_probe':
drivers/video/omap/omapfb_main.c:1773: undefined reference to `omap2_int_ctrl'

Looks like there's a missing dependency for CONFIG_FB_OMAP.  As the
only place omap2_int_ctrl is defined is in drivers/video/omap/dispc.c,
and this isn't built for OMAP4, maybe FB_OMAP is missing a dependency
such that it's only available for OMAP1, OMAP2 and OMAP3 ?

diff --git a/drivers/video/omap/Kconfig b/drivers/video/omap/Kconfig
index 455c605..083c8fe 100644
--- a/drivers/video/omap/Kconfig
+++ b/drivers/video/omap/Kconfig
@@ -1,7 +1,7 @@
 config FB_OMAP
 	tristate "OMAP frame buffer support (EXPERIMENTAL)"
-	depends on FB && ARCH_OMAP && (OMAP2_DSS = "n")
-
+	depends on FB && (OMAP2_DSS = "n")
+	depends on ARCH_OMAP1 || ARCH_OMAP2 || ARCH_OMAP3
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-12-14 12:44 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-02 21:25 OMAP4 build error - omapfb Russell King - ARM Linux
2010-12-02 21:25 ` Russell King - ARM Linux
2010-12-02 22:00 ` Tony Lindgren
2010-12-02 22:00   ` Tony Lindgren
2010-12-02 22:00   ` Tony Lindgren
2010-12-14 12:44   ` Tomi Valkeinen
2010-12-14 12:44     ` Tomi Valkeinen
2010-12-14 12:44     ` Tomi Valkeinen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.