diff options
author | Tom Rini <trini@konsulko.com> | 2022-01-13 14:33:02 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-13 14:33:02 -0500 |
commit | 25711b07ca1dcf73dc41b45ca040dadbcff0fa08 (patch) | |
tree | de49c129e19ab9b129aca41d59cd8ecdc3e18de7 /arch/x86/cpu | |
parent | 743c562d0c5269740236864bdb0002e73ec3e614 (diff) | |
parent | 6c9e3d1fc085977b5b38dfe610f65d1a7f48081b (diff) |
Merge tag 'dm-pull-13jan22' of https://source.denx.de/u-boot/custodians/u-boot-dm
bloblist prep for standard passage
switch order of pinctrl and power domain calls
various minor fixes
Diffstat (limited to 'arch/x86/cpu')
-rw-r--r-- | arch/x86/cpu/broadwell/cpu_from_spl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/cpu/broadwell/cpu_from_spl.c b/arch/x86/cpu/broadwell/cpu_from_spl.c index e5f62e7187c..df5a9675ee4 100644 --- a/arch/x86/cpu/broadwell/cpu_from_spl.c +++ b/arch/x86/cpu/broadwell/cpu_from_spl.c @@ -23,7 +23,7 @@ int dram_init(void) { struct spl_handoff *ho; - ho = bloblist_find(BLOBLISTT_SPL_HANDOFF, sizeof(*ho)); + ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(*ho)); if (!ho) return log_msg_ret("Missing SPL hand-off info", -ENOENT); handoff_load_dram_size(ho); @@ -56,7 +56,7 @@ int dram_init_banksize(void) { struct spl_handoff *ho; - ho = bloblist_find(BLOBLISTT_SPL_HANDOFF, sizeof(*ho)); + ho = bloblist_find(BLOBLISTT_U_BOOT_SPL_HANDOFF, sizeof(*ho)); if (!ho) return log_msg_ret("Missing SPL hand-off info", -ENOENT); handoff_load_dram_banks(ho); |