x86: Fix saying arch_cpu_init_dm in debug/docs

The function arch_cpu_init_dm was renamed to fsp_setup_pinctrl in these
cases, so rename debug / docs to match.

Cc: Simon Glass <sjg@chromium.org>
Fixes: 7fe32b3442 ("event: Convert arch_cpu_init_dm() to use events")
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Tom Rini
2023-01-14 15:49:35 -05:00
parent 5c006e7cb3
commit e8272cbd59
2 changed files with 2 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ static int x86_spl_init(void)
#ifndef CONFIG_TPL #ifndef CONFIG_TPL
ret = fsp_setup_pinctrl(NULL, NULL); ret = fsp_setup_pinctrl(NULL, NULL);
if (ret) { if (ret) {
debug("%s: arch_cpu_init_dm() failed\n", __func__); debug("%s: fsp_setup_pinctrl() failed\n", __func__);
return ret; return ret;
} }
#endif #endif

View File

@@ -259,7 +259,7 @@ Boot flow - U-Boot pre-relocation
U-Boot (running from start_from_spl.S) starts running in RAM and uses the same U-Boot (running from start_from_spl.S) starts running in RAM and uses the same
stack as SPL. It does various init activities before relocation. Notably stack as SPL. It does various init activities before relocation. Notably
arch_cpu_init_dm() sets up the pin muxing for the chip using a very large table fsp_setup_pinctrl() sets up the pin muxing for the chip using a very large table
in the device tree. in the device tree.
PCI auto-config is not used before relocation, but CONFIG_PCI of course is PCI auto-config is not used before relocation, but CONFIG_PCI of course is