public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] imx: imx8: fix build when CONFIG_IMX_BOOTAUX is set
@ 2024-08-07 13:39 max.oss.09
  2024-08-08  3:16 ` Peng Fan
  0 siblings, 1 reply; 4+ messages in thread
From: max.oss.09 @ 2024-08-07 13:39 UTC (permalink / raw)
  To: u-boot
  Cc: Max Krummenacher, Fabio Estevam, Igor Opaniuk, Marek Vasut,
	NXP i.MX U-Boot Team, Peng Fan, Simon Glass, Stefano Babic,
	Tom Rini, Ye Li

From: Max Krummenacher <max.krummenacher@toradex.com>

Use correct function name.

Fixes: e8cd1f60d964 ("imx: imx8: bootaux: Add i.MX8 M4 boot support")
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
---

 arch/arm/mach-imx/imx8/cpu.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-imx/imx8/cpu.c b/arch/arm/mach-imx/imx8/cpu.c
index accba502e492..834aca82bcfd 100644
--- a/arch/arm/mach-imx/imx8/cpu.c
+++ b/arch/arm/mach-imx/imx8/cpu.c
@@ -258,14 +258,14 @@ int arch_auxiliary_core_up(u32 core_id, ulong boot_private_data)
 			return -EIO;
 		}
 
-		if (!power_domain_lookup_name("audio_sai0", &pd)) {
+		if (!imx8_power_domain_lookup_name("audio_sai0", &pd)) {
 			if (power_domain_on(&pd)) {
 				printf("Error power on SAI0\n");
 				return -EIO;
 			}
 		}
 
-		if (!power_domain_lookup_name("audio_ocram", &pd)) {
+		if (!imx8_power_domain_lookup_name("audio_ocram", &pd)) {
 			if (power_domain_on(&pd)) {
 				printf("Error power on HIFI RAM\n");
 				return -EIO;
-- 
2.42.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-13 16:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-07 13:39 [PATCH] imx: imx8: fix build when CONFIG_IMX_BOOTAUX is set max.oss.09
2024-08-08  3:16 ` Peng Fan
2024-08-08 10:02   ` Max Krummenacher
2024-08-13 16:26     ` Fabio Estevam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox