Date: Sat, 21 Aug 2010 16:40:04 +0000 (UTC) From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r211574 - stable/8/sys/dev/ichwd Message-ID: <201008211640.o7LGe4k1075125@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: avg Date: Sat Aug 21 16:40:04 2010 New Revision: 211574 URL: http://svn.freebsd.org/changeset/base/211574 Log: MFC r210454: ichwd: correct range check for timeout value Modified: stable/8/sys/dev/ichwd/ichwd.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cam/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) Modified: stable/8/sys/dev/ichwd/ichwd.c ============================================================================== --- stable/8/sys/dev/ichwd/ichwd.c Sat Aug 21 15:46:33 2010 (r211573) +++ stable/8/sys/dev/ichwd/ichwd.c Sat Aug 21 16:40:04 2010 (r211574) @@ -256,8 +256,8 @@ ichwd_tmr_set(struct ichwd_softc *sc, un uint8_t tmr_val8 = ichwd_read_tco_1(sc, TCO_TMR1); tmr_val8 &= 0xc0; - if (timeout > 0xbf) - timeout = 0xbf; + if (timeout > 0x3f) + timeout = 0x3f; tmr_val8 |= timeout; ichwd_write_tco_1(sc, TCO_TMR1, tmr_val8); } else {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008211640.o7LGe4k1075125>