diff options
author | Wolfgang Denk <wd@denx.de> | 2008-03-26 10:41:48 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-26 10:41:48 +0100 |
commit | b951f8d31711f3f10ad119ddcf5a3d0afe14d561 (patch) | |
tree | 950ca2e675ec92ea7b5610a3a2ea2b739f0aaab5 /fs | |
parent | 218ca724c08ca8a649f0917cf201cf23d4b33f39 (diff) | |
parent | 27f33e9f45ef7f9685cbdc65066a1828e85dde4f (diff) | |
download | u-boot-imx-b951f8d31711f3f10ad119ddcf5a3d0afe14d561.zip u-boot-imx-b951f8d31711f3f10ad119ddcf5a3d0afe14d561.tar.gz u-boot-imx-b951f8d31711f3f10ad119ddcf5a3d0afe14d561.tar.bz2 |
Merge branch 'master_merge_new-image' of /home/tur/git/u-boot
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cramfs/uncompress.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/fs/cramfs/uncompress.c b/fs/cramfs/uncompress.c index a9c0b7d..cf67967 100644 --- a/fs/cramfs/uncompress.c +++ b/fs/cramfs/uncompress.c @@ -29,24 +29,8 @@ static z_stream stream; -#define ZALLOC_ALIGNMENT 16 - -static void *zalloc (void *x, unsigned items, unsigned size) -{ - void *p; - - size *= items; - size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1); - - p = malloc (size); - - return (p); -} - -static void zfree (void *x, void *addr, unsigned nb) -{ - free (addr); -} +void *zalloc(void *, unsigned, unsigned); +void zfree(void *, void *, unsigned); /* Returns length of decompressed data. */ int cramfs_uncompress_block (void *dst, void *src, int srclen) |