Address whitespace nits in subr_rtc.c

These were separated out from a nearby patch from Andrew Gierth.

MFC after:	3 days
This commit is contained in:
Kyle Evans 2020-09-28 17:19:57 +00:00
parent c1aedfcbd9
commit 5f0601fd19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366231

View File

@ -164,7 +164,7 @@ clock_dbgprint_hdr(device_t dev, int rw)
getnanotime(&now);
device_printf(dev, "%s at ", (rw & CLOCK_DBG_READ) ? "read " : "write");
clock_print_ts(&now, 9);
printf(": ");
printf(": ");
}
void
@ -241,7 +241,7 @@ clock_register_flags(device_t clockdev, long resolution, int flags)
}
sx_xunlock(&rtc_list_lock);
device_printf(clockdev,
device_printf(clockdev,
"registered as a time-of-day clock, resolution %d.%6.6ds\n",
newrtc->resolution / 1000000, newrtc->resolution % 1000000);
}