Remove code comment

This commit is contained in:
Imbus 2025-10-30 22:44:50 +01:00
parent 7ac571809a
commit c975a86805

View file

@ -23,7 +23,7 @@
/* Read the current time of the RTC */ /* Read the current time of the RTC */
uint64_t rtc_time_read(void) { 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); uint32_t high = GF_REG32(RTC_TIME_HIGH);
return ((uint64_t)high << 32) | low; return ((uint64_t)high << 32) | low;
} }