diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:25 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:11 -0500 |
commit | 6c03f9e618f4a94900bdd5857117811e21ffb959 (patch) | |
tree | aefbfc95146d87ee4c50775259fe8246d2cfab1c /common | |
parent | b03e0510d769381ce3cda5a494889bfee5042c59 (diff) | |
download | u-boot-6c03f9e618f4a94900bdd5857117811e21ffb959.tar.gz u-boot-6c03f9e618f4a94900bdd5857117811e21ffb959.tar.xz u-boot-6c03f9e618f4a94900bdd5857117811e21ffb959.zip |
common: Add a new lz4.h header file
Add a header file to house the lz4 compression function. Add a comment
while we are here, since it not even clear from the name what the function
actuall does.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/image.c b/common/image.c index 992ebbad51..1c8ac2df70 100644 --- a/common/image.c +++ b/common/image.c @@ -20,6 +20,7 @@ #include <gzip.h> #include <image.h> +#include <lz4.h> #include <mapmem.h> #if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT |