summaryrefslogtreecommitdiff
path: root/firmware/common/dircache.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/dircache.c')
-rw-r--r--firmware/common/dircache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/common/dircache.c b/firmware/common/dircache.c
index 0bdd0657bd..7222a41221 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -546,16 +546,16 @@ static int dircache_do_rebuild(void)
546 memset(dircache_cur_path, 0, MAX_PATH); 546 memset(dircache_cur_path, 0, MAX_PATH);
547 dircache_size = sizeof(struct dircache_entry); 547 dircache_size = sizeof(struct dircache_entry);
548 548
549 cpu_boost(true); 549 cpu_boost_id(true, CPUBOOSTID_DIRCACHE);
550 if (dircache_travel(pdir, dircache_root) < 0) 550 if (dircache_travel(pdir, dircache_root) < 0)
551 { 551 {
552 logf("dircache_travel failed"); 552 logf("dircache_travel failed");
553 cpu_boost(false); 553 cpu_boost_id(false, CPUBOOSTID_DIRCACHE);
554 dircache_size = 0; 554 dircache_size = 0;
555 dircache_initializing = false; 555 dircache_initializing = false;
556 return -2; 556 return -2;
557 } 557 }
558 cpu_boost(false); 558 cpu_boost_id(false, CPUBOOSTID_DIRCACHE);
559 559
560 logf("Done, %d KiB used", dircache_size / 1024); 560 logf("Done, %d KiB used", dircache_size / 1024);
561 561