summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2015-05-13 12:58:19 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2015-05-13 12:58:19 +0200
commit5c2752a59cde6424709ca20c00fb19f1b9d58bf3 (patch)
tree3a24f7a495d4f8ef921e9860bf1535b9db491307 /lib
parentc6d4d70e04873101f64370edfe3163075daae89d (diff)
mtd/nand/ubi: assortment of alignment fixes
Various U-Boot adoptions/extensions to MTD/NAND/UBI did not take buffer alignment into account which led to failures of the following form: ERROR: v7_dcache_inval_range - start address is not aligned - 0x1f7f0108 ERROR: v7_dcache_inval_range - stop address is not aligned - 0x1f7f1108
Diffstat (limited to 'lib')
-rw-r--r--lib/gzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gzip.c b/lib/gzip.c
index ff37d4f31b..2a74411c2e 100644
--- a/lib/gzip.c
+++ b/lib/gzip.c
@@ -25,7 +25,7 @@ static void *zalloc(void *x, unsigned items, unsigned size)
size *= items;
size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
- p = malloc (size);
+ p = memalign(ARCH_DMA_MINALIGN, size);
return (p);
}