MLK-20955 imx8qm: delete power-domains for lpuart0 on xen
To U-Boot on DomU, the lpuart0 is replaced with a xen paravirtual
consol driver, but reused the previous lpuart node. However
there is an power-domains entry in lpuart0 which will call
power_domain_on and failed to probe xen paravirtual driver,
because of recent change:
commit 8524ca764d8f("MLK-20945-2 dm: device: Check the power up result in probe ")
So remove the power-domains entry in lpuart0 to let DomU U-Boot could
output again.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Flynn xu <flynn.xu@nxp.com>
(cherry picked from commit 38155100481a07e961f375052241d9d03e20a899)
This commit is contained in:
parent
5bc91d52ba
commit
92104edf74
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2018 NXP
|
||||
* Copyright 2018-2019 NXP
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
|
@ -71,5 +71,6 @@
|
|||
|
||||
&lpuart0 {
|
||||
compatible = "xen,xen";
|
||||
/delete-property/ power-domains;
|
||||
u-boot,dm-pre-reloc;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue