rockchip: rk3568: fix compile error

error: ‘CRU_SOFTRST_CON02’ undeclared (first use in this function)

Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
Change-Id: I64935d50646a1ca7d228308c11f2f95a2e2378bb
This commit is contained in:
Jason Zhu 2020-11-05 16:15:06 +08:00
parent 8ae3c2c283
commit 3f04f6e376
1 changed files with 1 additions and 1 deletions

View File

@ -743,7 +743,7 @@ int spl_fit_standalone_release(uintptr_t entry_point)
writel(0x1 << (16 + 15), SGRF_BASE + GRF_FIREWALL_SLV_CON0);
writel(0x3 << (16 + 1), SGRF_BASE + GRF_FIREWALL_SLV_CON7);
/* release the scr1 */
writel(0x04000000, CRU_BASE + CRU_SOFTRST_CON02);
writel(0x04000000, CRU_BASE + CRU_SOFTRST_CON26);
return 0;
}