mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
x86: Add debugging when cpu_common_init() fails
Add a debug() at this point to help figure out what is wrong. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
@@ -146,8 +146,10 @@ int print_cpuinfo(void)
|
||||
}
|
||||
|
||||
ret = cpu_common_init();
|
||||
if (ret)
|
||||
if (ret) {
|
||||
debug("%s: cpu_common_init() failed\n", __func__);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Check PM1_STS[15] to see if we are waking from Sx */
|
||||
pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
|
||||
|
Reference in New Issue
Block a user