From: Aaro Koskinen Date: Mon, 4 Mar 2013 21:03:19 +0000 (+0200) Subject: omapfb: fix broken build on OMAP1 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d31c3a81893e3416ea519d1b1383f319c046641f;p=linux.git omapfb: fix broken build on OMAP1 Fix the following build regression in 3.9-rc1 by including : drivers/video/omap/omapfb_main.c: In function 'set_fb_var': drivers/video/omap/omapfb_main.c:505:3: error: implicit declaration of function 'cpu_is_omap15xx' [-Werror=implicit-function-declaration] Signed-off-by: Aaro Koskinen Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c index e31f5b33b501e..d40612c31a989 100644 --- a/drivers/video/omap/omapfb_main.c +++ b/drivers/video/omap/omapfb_main.c @@ -32,6 +32,8 @@ #include +#include + #include "omapfb.h" #include "lcdc.h"