]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - lib/gzip.c
karo: tx28: request gpio for acitivity LED and disable LED on failure
[karo-tx-uboot.git] / lib / gzip.c
index ff37d4f31be4ba479a0c6e0d1b2bdacd0f32db26..cd8e9fea43dd6eb80f9256604cdf77b90e6b6e32 100644 (file)
@@ -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 = malloc_cache_aligned(size);
 
        return (p);
 }