Lines Matching refs:smw
266 acpi_wdrt_setmode(struct sysmon_wdog *smw)
268 struct acpi_wdrt_softc *sc = smw->smw_cookie;
272 __func__, smw->smw_mode, smw->smw_period));
274 switch (smw->smw_mode & WDOG_MODE_MASK) {
285 if (smw->smw_period == 0)
287 if (smw->smw_period > sc->sc_max_period)
288 smw->smw_period = sc->sc_max_period;
299 if (acpi_wdrt_tickle(smw))
314 acpi_wdrt_tickle(struct sysmon_wdog *smw)
316 struct acpi_wdrt_softc *sc = smw->smw_cookie;
320 __func__, smw->smw_mode, smw->smw_period));
323 val = smw->smw_period * sc->sc_period_scale;