global: Migrate CONFIG_LOWPOWER_ADDR to CFG

Perform a simple rename of CONFIG_LOWPOWER_ADDR to CFG_LOWPOWER_ADDR

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2022-12-04 10:04:32 -05:00
parent 1cd60b3cc0
commit 77db07ce1c
2 changed files with 2 additions and 2 deletions

View file

@ -161,7 +161,7 @@ static void secondary_cores_configure(void)
/* set lowpower flag and address */
writel(CPU_RST_FLAG_VAL, CONFIG_LOWPOWER_FLAG);
writel((uint32_t)&low_power_start, CONFIG_LOWPOWER_ADDR);
writel((uint32_t)&low_power_start, CFG_LOWPOWER_ADDR);
writel(CPU_RST_FLAG_VAL, EXYNOS5420_SPARE_BASE);
/* Store jump address for power down */
writel((uint32_t)&power_down_core, CONFIG_PHY_IRAM_BASE + 0x4);

View file

@ -16,6 +16,6 @@
* Low Power settings
*/
#define CONFIG_LOWPOWER_FLAG 0x02020028
#define CONFIG_LOWPOWER_ADDR 0x0202002C
#define CFG_LOWPOWER_ADDR 0x0202002C
#endif /* __CONFIG_EXYNOS5420_H */