diff options
author | T Michael Turney <mturney@codeaurora.org> | 2019-06-11 11:17:57 -0700 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2019-07-02 01:32:19 +0000 |
commit | 24e52659a3ab5a4bd4954696700666174bb016a9 (patch) | |
tree | b43b452ec754f34b39e9c85a2b6c304bc86930c5 | |
parent | 1430b3995f796de0daeaaf95c31dc086f5f2d5ac (diff) | |
download | coreboot-24e52659a3ab5a4bd4954696700666174bb016a9.tar.xz |
QC common: fix compiler complaint, missing <string.h>
Change-Id: I5b5b7bc61dd82fb1b866857d60926b057fae3715
Signed-off-by: T Michael Turney <mturney@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33445
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/qualcomm/common/qclib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/qualcomm/common/qclib.c b/src/soc/qualcomm/common/qclib.c index 25512a938f..ac80a76c82 100644 --- a/src/soc/qualcomm/common/qclib.c +++ b/src/soc/qualcomm/common/qclib.c @@ -16,6 +16,7 @@ #include <console/cbmem_console.h> #include <cbmem.h> #include <boardid.h> +#include <string.h> #include <fmap.h> #include <assert.h> #include <arch/mmu.h> |