Remove local modifications from tinfgzip.c that were included accidentally.
authorTobias Diedrich <ranma+coreboot@tdiedrich.de>
Tue, 20 Oct 2015 22:39:49 +0000 (00:39 +0200)
committerTobias Diedrich <ranma+coreboot@tdiedrich.de>
Tue, 20 Oct 2015 22:40:43 +0000 (00:40 +0200)
u-boot/lib_generic/tinfgzip.c

index ebc4d9e767bd915856da066421fa5f01c2aafac9..1a167950d3a043090a18d28fd22095f986ac247e 100644 (file)
@@ -32,7 +32,6 @@
  */
 
 #include "tinf.h"
-#include <stdio.h>
 
 #define FTEXT    1
 #define FHCRC    2
@@ -113,25 +112,13 @@ int tinf_gzip_uncompress(void *dest, unsigned int *destLen,
 
     res = tinf_uncompress(dst, destLen, start, src + sourceLen - start - 8);
 
-    if (res != TINF_OK) {
-       puts("uncompress error");
-       return TINF_DATA_ERROR;
-    }
+    if (res != TINF_OK) return TINF_DATA_ERROR;
 
-#if 0
-    if (*destLen != dlen) {
-       printf("len error %d != %d", *destLen, dlen);
-       return TINF_DATA_ERROR;
-    }
+    if (*destLen != dlen) return TINF_DATA_ERROR;
 
     /* -- check CRC32 checksum -- */
 
-    if (crc32 != tinf_crc32(dst, *destLen)) {
-       return TINF_DATA_ERROR;
-    }
-#endif
-    printf("expected len %08x vs decoded %08x\n", dlen, *destLen);
-    printf("expected crc32 %08x vs calculated %08x\n", crc32, tinf_crc32(dst, *destLen));
+    if (crc32 != tinf_crc32(dst, dlen)) return TINF_DATA_ERROR;
 
     return TINF_OK;
 }