]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - lib/gunzip.c
zlib/gunzip: Use WATCHDOG_RESET macro
[karo-tx-uboot.git] / lib / gunzip.c
index d2b7ad477916b4a03fbe6b6b439cc76456d6a9cb..482a4768a3f9afd9fa4d24b8927c615e892c561f 100644 (file)
@@ -96,11 +96,6 @@ int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,
 
        s.zalloc = zalloc;
        s.zfree = zfree;
-#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
-       s.outcb = (cb_func)WATCHDOG_RESET;
-#else
-       s.outcb = Z_NULL;
-#endif /* CONFIG_HW_WATCHDOG */
 
        r = inflateInit2(&s, -MAX_WBITS);
        if (r != Z_OK) {