mcc: Initialize cache_disable for t60xx

Shouldn't matter since this should be zero-initialized anyway, but
clearer.

Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
Hector Martin 2023-09-04 03:50:37 +09:00
parent 99e659ae01
commit 655299382d

View file

@ -268,6 +268,7 @@ int mcc_init_t6000(int node, int *path, bool t602x)
mcc_regs[i].cache_ways = T6000_CACHE_WAYS;
mcc_regs[i].cache_status_mask = T6000_CACHE_STATUS_MASK;
mcc_regs[i].cache_status_val = T6000_CACHE_STATUS_VAL;
mcc_regs[i].cache_disable = 0;
mcc_regs[i].tz = t602x ? &t602x_tz_regs : &t8103_tz_regs;
}