From eee656bb346a6b501d34e3192be7eb93efa02ee2 Mon Sep 17 00:00:00 2001 From: shchmue Date: Tue, 22 Oct 2019 11:18:05 -0600 Subject: [PATCH] Add missing file for KFuse fix --- source/soc/clock.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/soc/clock.c b/source/soc/clock.c index 73e5fb3..0726748 100644 --- a/source/soc/clock.c +++ b/source/soc/clock.c @@ -15,6 +15,7 @@ */ #include "../soc/clock.h" +#include "../soc/kfuse.h" #include "../soc/t210.h" #include "../utils/util.h" #include "../storage/sdmmc.h" @@ -188,6 +189,7 @@ void clock_enable_kfuse() usleep(10); CLOCK(CLK_RST_CONTROLLER_RST_DEVICES_H) &= 0xFFFFFEFF; usleep(20); + kfuse_wait_ready(); } void clock_disable_kfuse()