diff options
author | Simon Glass <sjg@chromium.org> | 2021-10-09 09:28:21 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-09 13:09:56 -0400 |
commit | 2a2d8e94ddc75c2c8d456e9163aa5dac510badcf (patch) | |
tree | e085b4c6bf58d86374bc541da07bf26716f274a1 /test/compression.c | |
parent | 94e922c76a0e1fcdead3359e340f53fd0709a963 (diff) | |
download | u-boot-2a2d8e94ddc75c2c8d456e9163aa5dac510badcf.tar.gz |
lz4: Use a private header for U-Boot
At present U-Boot has a header file called lz4.h for its own use. If the
host has its own lz4 header file installed (e.g. from the 'liblz4-dev'
package) then host builds will use that instead.
Move the U-Boot file into its own directory, as is done with various
other headers with the same problem.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/compression.c')
-rw-r--r-- | test/compression.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compression.c b/test/compression.c index 4cd1be564f..26d3c80fb5 100644 --- a/test/compression.c +++ b/test/compression.c @@ -9,11 +9,11 @@ #include <gzip.h> #include <image.h> #include <log.h> -#include <lz4.h> #include <malloc.h> #include <mapmem.h> #include <asm/io.h> +#include <u-boot/lz4.h> #include <u-boot/zlib.h> #include <bzlib.h> |