ops that's not what I mean
This commit is contained in:
parent
0af0190468
commit
8ac4bc40da
|
@ -176,10 +176,6 @@ static efitimems_t testSchedulingStart;
|
||||||
static void timerValidationCallback(void *arg) {
|
static void timerValidationCallback(void *arg) {
|
||||||
(void)arg;
|
(void)arg;
|
||||||
|
|
||||||
if (hasFirmwareError()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
testSchedulingHappened = true;
|
testSchedulingHappened = true;
|
||||||
efitimems_t actualTimeSinceScheduling = (currentTimeMillis() - testSchedulingStart);
|
efitimems_t actualTimeSinceScheduling = (currentTimeMillis() - testSchedulingStart);
|
||||||
|
|
||||||
|
@ -193,6 +189,9 @@ static void timerValidationCallback(void *arg) {
|
||||||
* helps to make sure our GPT hardware settings are somewhat right
|
* helps to make sure our GPT hardware settings are somewhat right
|
||||||
*/
|
*/
|
||||||
static void validateHardwareTimer() {
|
static void validateHardwareTimer() {
|
||||||
|
if (hasFirmwareError()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
testSchedulingStart = currentTimeMillis();
|
testSchedulingStart = currentTimeMillis();
|
||||||
|
|
||||||
// to save RAM let's use 'watchDogBuddy' here once before we enable watchdog
|
// to save RAM let's use 'watchDogBuddy' here once before we enable watchdog
|
||||||
|
|
Loading…
Reference in New Issue