From: Tomi Valkeinen Date: Fri, 28 Sep 2012 07:03:03 +0000 (+0300) Subject: OMAPDSS: add missing include for string.h X-Git-Tag: next-20121001~48^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=13b1ba7de8d0ecc42e4f9c002d5b0c1a48f05e58;p=karo-tx-linux.git OMAPDSS: add missing include for string.h Both dpi.c and sdi.c use strcmp(), but do not include string.h. With some Kconfig options string.h is included implicitly, but with some other the compilation fails: drivers/video/omap2/dss/dpi.c:407:5: error: implicit declaration of function 'strcmp' Include string.h in both dpi.c and sdi.c Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/omap2/dss/dpi.c b/drivers/video/omap2/dss/dpi.c index d73a549050e4..56748cf8760e 100644 --- a/drivers/video/omap2/dss/dpi.c +++ b/drivers/video/omap2/dss/dpi.c @@ -29,6 +29,7 @@ #include #include #include +#include #include