diff options
author | Gabe Black <gabeblack@chromium.org> | 2013-07-01 04:57:37 -0700 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2013-08-15 20:10:39 +0200 |
commit | 0c605a5a6cf0b5a7bdaa6068168581dc8fb24d22 (patch) | |
tree | 3c975a327806f6a2f1fdeea66708cc5c74b6aa20 /src/include | |
parent | f31eacca62bb9fda9ed05be941a336163f1ce146 (diff) | |
download | coreboot-0c605a5a6cf0b5a7bdaa6068168581dc8fb24d22.tar.xz |
CBFS: Change the signature of cbfs_decompress.
Instead of returning 0 on success and -1 on error, return the decompressed
size of the data on success and 0 on error. The decompressed size is useful
information to have that was being thrown away in that function.
Change-Id: If787201aa61456b1e47feaf3a0071c753fa299a3
Signed-off-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/3578
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cbfs_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cbfs_core.h b/src/include/cbfs_core.h index 54e2f60d87..08fe8150ed 100644 --- a/src/include/cbfs_core.h +++ b/src/include/cbfs_core.h @@ -218,7 +218,7 @@ struct cbfs_file *cbfs_get_file(struct cbfs_media *media, const char *name); void *cbfs_get_file_content(struct cbfs_media *media, const char *name, int type); -/* returns 0 on success, -1 on failure */ +/* returns decompressed size on success, 0 on failure */ int cbfs_decompress(int algo, void *src, void *dst, int len); /* returns a pointer to CBFS master header, or CBFS_HEADER_INVALID_ADDRESS |