diff options
author | Tom Rini <trini@konsulko.com> | 2023-01-14 15:49:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-18 12:46:13 -0500 |
commit | e8272cbd59afdc1617e8c0288ebd663fd743d4b5 (patch) | |
tree | a7d6da0d76e67ad0b6e34441e6707d48294b5ce1 /arch | |
parent | 5c006e7cb345d2e9c44de143a88c2cd37d5a9cc9 (diff) | |
download | u-boot-e8272cbd59afdc1617e8c0288ebd663fd743d4b5.zip u-boot-e8272cbd59afdc1617e8c0288ebd663fd743d4b5.tar.gz u-boot-e8272cbd59afdc1617e8c0288ebd663fd743d4b5.tar.bz2 |
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: 7fe32b3442f0 ("event: Convert arch_cpu_init_dm() to use events")
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/lib/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index 34ef68f..bdf57ef 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c @@ -92,7 +92,7 @@ static int x86_spl_init(void) #ifndef CONFIG_TPL ret = fsp_setup_pinctrl(NULL, NULL); if (ret) { - debug("%s: arch_cpu_init_dm() failed\n", __func__); + debug("%s: fsp_setup_pinctrl() failed\n", __func__); return ret; } #endif |