On Thu, Jun 04, 2020 at 06:26:02PM +0200, Bruno Thomsen wrote: > Driver does not use module parameter for nowayout, so it need to > statically initialize status variable of the watchdog_device based > on CONFIG_WATCHDOG_NOWAYOUT. > > Signed-off-by: Bruno Thomsen <bruno.thomsen@xxxxxxxxx> Acked-by: Guenter Roeck <linux@xxxxxxxxxxxx> > --- > drivers/rtc/rtc-pcf2127.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/rtc/rtc-pcf2127.c b/drivers/rtc/rtc-pcf2127.c > index 4e50d6768f13..0f7d0a9a2d18 100644 > --- a/drivers/rtc/rtc-pcf2127.c > +++ b/drivers/rtc/rtc-pcf2127.c > @@ -441,6 +441,7 @@ static int pcf2127_probe(struct device *dev, struct regmap *regmap, > pcf2127->wdd.max_timeout = PCF2127_WD_VAL_MAX; > pcf2127->wdd.timeout = PCF2127_WD_VAL_DEFAULT; > pcf2127->wdd.min_hw_heartbeat_ms = 500; > + pcf2127->wdd.status = WATCHDOG_NOWAYOUT_INIT_STATUS; > > watchdog_set_drvdata(&pcf2127->wdd, pcf2127); > > -- > 2.26.2 >