diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-16 16:16:52 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-16 16:16:52 +0100 |
commit | abd21321841032248800bca9abc64867f7ba6b59 (patch) | |
tree | b8caeeb0b6009fb8e9de991d624b2c7e303c8217 /i386 | |
parent | b8f21bc06164f8d5e0791a636f15e3771c4f3a5a (diff) | |
download | gnumach-abd21321841032248800bca9abc64867f7ba6b59.tar.gz gnumach-abd21321841032248800bca9abc64867f7ba6b59.tar.bz2 gnumach-abd21321841032248800bca9abc64867f7ba6b59.zip |
rtc: drop message on setting RTC time
We haven't seen the 2032 bug for a long time, f040677be3c0 ("kd: Do not
read the CMOS ram") probably fixed it at last.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386at/rtc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/i386/i386at/rtc.c b/i386/i386at/rtc.c index 51373751..d771df8e 100644 --- a/i386/i386at/rtc.c +++ b/i386/i386at/rtc.c @@ -237,14 +237,6 @@ writetodc(void) rtclk.rtc_dom = dectohexdec(++n); - printf("Setting RTC time to %02u-%02u-%02u %02u:%02u:%02u\n", - hexdectodec(rtclk.rtc_yr), - hexdectodec(rtclk.rtc_mon), - hexdectodec(rtclk.rtc_dom), - hexdectodec(rtclk.rtc_hr), - hexdectodec(rtclk.rtc_min), - hexdectodec(rtclk.rtc_sec)); - ospl = splclock(); rtcput(&rtclk); splx(ospl); |