Remove code comment
This commit is contained in:
parent
7ac571809a
commit
c975a86805
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue