mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
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:
parent
1cd60b3cc0
commit
77db07ce1c
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue