diff options
author | Nicholas Mc Guire <hofrat@osadl.org> | 2017-01-07 10:38:31 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-01-09 11:53:05 +0100 |
commit | fac69d0efad08fc15e4dbfc116830782acc0dc9a (patch) | |
tree | 8ee25b7c9afd2831851a613014f675e5048f5285 /arch/x86/boot/string.c | |
parent | x86/CPU/AMD: Fix Bulldozer topology (diff) | |
download | linux-fac69d0efad08fc15e4dbfc116830782acc0dc9a.tar.xz linux-fac69d0efad08fc15e4dbfc116830782acc0dc9a.zip |
x86/boot: Add missing declaration of string functions
Add the missing declarations of basic string functions to string.h to allow
a clean build.
Fixes: 5be865661516 ("String-handling functions for the new x86 setup code.")
Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Link: http://lkml.kernel.org/r/1483781911-21399-1-git-send-email-hofrat@osadl.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/boot/string.c')
-rw-r--r-- | arch/x86/boot/string.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/boot/string.c b/arch/x86/boot/string.c index cc3bd583dce1..9e240fcba784 100644 --- a/arch/x86/boot/string.c +++ b/arch/x86/boot/string.c @@ -14,6 +14,7 @@ #include <linux/types.h> #include "ctype.h" +#include "string.h" int memcmp(const void *s1, const void *s2, size_t len) { |