Hi All, > > > +#include <linux/config.h> > > > > not needed. > > It is, otherwise I do not get CONFIG_WATCHDOG_NOWAYOUT. We'll fix this in the watchdog.h include file. > > > +static int nowayout = > > > +#if defined(CONFIG_WATCHDOG_NOWAYOUT) > > > + 1; > > > +#else > > > + 0; > > > +#endif > > > > static int nowayout = CONFIG_WATCHDOG_NOWAYOUT; > > > > should work. > > Does not work. If the option is not selected, CONFIG_WATCHDOG_NOWAYOUT > is undefined, not zero. This should be: static int nowayout = WATCHDOG_NOWAYOUT; Can you resent me your latest diff? Thanks, Wim.