aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-07-17 08:48:07 -0600
committerBin Meng <bmeng.cn@gmail.com>2020-07-20 09:46:42 +0800
commitcb1cb7146fbe1630ab5ae8c8b1043d8021c20a4d (patch)
tree660e91d009c3e7e631c6282c98b88a81cdd6f7b2 /arch
parentd2ee543ae2af3a3f04ca6c92f4175f342109af54 (diff)
downloadu-boot-cb1cb7146fbe1630ab5ae8c8b1043d8021c20a4d.zip
u-boot-cb1cb7146fbe1630ab5ae8c8b1043d8021c20a4d.tar.gz
u-boot-cb1cb7146fbe1630ab5ae8c8b1043d8021c20a4d.tar.bz2
x86: mp_init: Switch to livetree
Update this code to use livetree calls instead of flat-tree. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/cpu/mp_init.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/cpu/mp_init.c b/arch/x86/cpu/mp_init.c
index 7fde4ff..c25d17c 100644
--- a/arch/x86/cpu/mp_init.c
+++ b/arch/x86/cpu/mp_init.c
@@ -507,8 +507,7 @@ int mp_init_cpu(struct udevice *cpu, void *unused)
* seq num in the uclass_resolve_seq() during device_probe(). To avoid
* this, set req_seq to the reg number in the device tree in advance.
*/
- cpu->req_seq = fdtdec_get_int(gd->fdt_blob, dev_of_offset(cpu), "reg",
- -1);
+ cpu->req_seq = dev_read_u32_default(cpu, "reg", -1);
plat->ucode_version = microcode_read_rev();
plat->device_id = gd->arch.x86_device;