summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx
diff options
context:
space:
mode:
authorLeonard Crestez <leonard.crestez@nxp.com>2017-04-12 17:05:47 +0300
committerJason Liu <jason.hui.liu@nxp.com>2019-02-12 10:26:13 +0800
commit8e526a00998f09f197384ac6a5741f4e77dae543 (patch)
tree22b8076eb7cb4890dd90dd7c6c4718d635d460e5 /arch/arm/mach-imx
parent1495187fba60352aca2ec8e5bb4f6b2e0c2682b4 (diff)
MLK-14586: ARM: imx: Fix path to serial port for pm save/restore
The imx7 sleep code will save and restore UART1 registers on suspend/resume. It does this by fetching the address base using an absolute devicetree path. Fix that path in 4.9 where the DTS is closer to the one in upstream. Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r--arch/arm/mach-imx/pm-imx7.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/pm-imx7.c b/arch/arm/mach-imx/pm-imx7.c
index 06ee8c5d65d5..7fde0b6768f6 100644
--- a/arch/arm/mach-imx/pm-imx7.c
+++ b/arch/arm/mach-imx/pm-imx7.c
@@ -1165,7 +1165,7 @@ void __init imx7d_pm_init(void)
WARN_ON(!ocram_saved_in_ddr);
np = of_find_node_by_path(
- "/soc/aips-bus@30800000/spba-bus@30800000/serial@30860000");
+ "/soc/aips-bus@30800000/serial@30860000");
if (np)
console_base = of_iomap(np, 0);