From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alessandro Rubini Date: Fri, 17 Jul 2009 14:26:26 +0200 Subject: [U-Boot] [PATCH] Refresh LZMA-lib to 4.65 In-Reply-To: References: <1246985548-24183-1-git-send-email-luigi.mantellini.ml@gmail.com> <20090716211129.E9241832E416@gemini.denx.de> <20090717103158.8439D832E416@gemini.denx.de> Message-ID: <20090717122626.GA352@mail.gnudd.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > watchdog.diff > reset watchdog timer to avoid reboot during decompression on slow machines. Actually, you don't need all these ifdef, that clutter the code. watchdog.h already include this: /* * No hardware or software watchdog. */ #if defined(__ASSEMBLY__) #define WATCHDOG_RESET /*XXX DO_NOT_DEL_THIS_COMMENT*/ #else #define WATCHDOG_RESET() {} #endif /* __ASSEMBLY__ */ So please don't ifdef around WATCHDOG_RESET /alessandro