From c975a86805f15bdda5bae9f341d9d943c9901379 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Thu, 30 Oct 2025 22:44:50 +0100 Subject: [PATCH] Remove code comment --- kern/rtc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kern/rtc.c b/kern/rtc.c index 9cb8cbb..db31304 100644 --- a/kern/rtc.c +++ b/kern/rtc.c @@ -23,7 +23,7 @@ /* Read the current time of the RTC */ uint64_t rtc_time_read(void) { - uint32_t low = GF_REG32(RTC_TIME_LOW); // mmio_read32(VIRT_RTC_BASE + RTC_TIME_LOW); + uint32_t low = GF_REG32(RTC_TIME_LOW); uint32_t high = GF_REG32(RTC_TIME_HIGH); return ((uint64_t)high << 32) | low; }