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 /lib/lz4_wrapper.c | |
parent | b03e0510d769381ce3cda5a494889bfee5042c59 (diff) |
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 'lib/lz4_wrapper.c')
-rw-r--r-- | lib/lz4_wrapper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/lz4_wrapper.c b/lib/lz4_wrapper.c index 1c68e67452..1e1e8d5085 100644 --- a/lib/lz4_wrapper.c +++ b/lib/lz4_wrapper.c @@ -6,6 +6,7 @@ #include <common.h> #include <compiler.h> #include <image.h> +#include <lz4.h> #include <linux/kernel.h> #include <linux/types.h> |