From a66ab869693bbbbb6b506a59e8ff8e9f48e1f15a Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Fri, 30 Sep 2016 22:23:54 +0200 Subject: [PATCH] Remove old TODO The uptime is now correct with HPET --- kernel/src/timer.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/src/timer.cpp b/kernel/src/timer.cpp index 4e37e30f..877c365b 100644 --- a/kernel/src/timer.cpp +++ b/kernel/src/timer.cpp @@ -25,7 +25,6 @@ uint64_t _timer_frequency = 0; uint64_t (*_counter_fun)() = nullptr; uint64_t _counter_frequency = 0; -//TODO The uptime in seconds with HPET is not correct std::string sysfs_uptime(){ return std::to_string(timer::seconds()); }