From: Richard Röjfors Date: Sat, 3 May 2014 14:09:37 +0000 (+0200) Subject: backports: backport-3.15: Include fix X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1b62085572206ee0ad9a89dcc5528d63b432d7fe;p=openwrt%2Fstaging%2Fblogic.git backports: backport-3.15: Include fix In this version the correct linux string.h is included. Include string.h to avoid compile issues if warnings are treated as errors: backports-3.14-1/compat/backport-3.15.c: In function 'backport_devm_kstrdup': backports-3.14-1/compat/backport-3.15.c:33:2: error: implicit declaration of function 'strlen' [-Werror=implicit-function-declaration] size = strlen(s) + 1; ^ backports-3.14-1/compat/backport-3.15.c:33:9: warning: incompatible implicit declaration of built-in function 'strlen' [enabled by default] size = strlen(s) + 1; ^ backports-3.14-1/compat/backport-3.15.c:36:3: error: implicit declaration of function 'memcpy' [-Werror=implicit-function-declaration] memcpy(buf, s, size); ^ backports-3.14-1/compat/backport-3.15.c:36:3: warning: incompatible implicit declaration of built-in function 'memcpy' [enabled by default] Signed-off-by: Richard Röjfors [refreshed patch on current master] Signed-off-by: Hauke Mehrtens --- diff --git a/backport/compat/backport-3.15.c b/backport/compat/backport-3.15.c index 545e0c297ea6..4094e27c1f6a 100644 --- a/backport/compat/backport-3.15.c +++ b/backport/compat/backport-3.15.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0))