Re: svn commit: r330407 - head/sys/dev/iicbus

2018-03-05 Thread Ian Lepore
On Mon, 2018-03-05 at 19:05 -0500, Jonathan Looney wrote: > It looks like this is causing compilation failures: > > /home/jtl/head/sys/dev/iicbus/ds1672.c:147:20: error: use of > undeclared > identifier 'sc' > clock_dbgprint_ts(sc->sc_dev, CLOCK_DBG_READ, ts); >   ^

Re: svn commit: r330407 - head/sys/dev/iicbus

2018-03-05 Thread Jonathan Looney
It looks like this is causing compilation failures: /home/jtl/head/sys/dev/iicbus/ds1672.c:147:20: error: use of undeclared identifier 'sc' clock_dbgprint_ts(sc->sc_dev, CLOCK_DBG_READ, ts); ^ /home/jtl/head/sys/dev/iicbus/ds1672.c:162:20: error: use of undeclared

svn commit: r330407 - head/sys/dev/iicbus

2018-03-04 Thread Ian Lepore
Author: ian Date: Sun Mar 4 19:32:52 2018 New Revision: 330407 URL: https://svnweb.freebsd.org/changeset/base/330407 Log: Add calls to the new clock_dbgprint_xxx() functions. Also, stop applying a local .5 second adjustment to the time, since that is now done by the code in subr_rtc.c. Mo