diff options
author | Rob Herring <robh@kernel.org> | 2018-08-27 16:44:05 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-09-28 21:25:58 +0200 |
commit | 7de8f4aa2f35583eea8efc7d7c2cc35d13964d97 (patch) | |
tree | 968a7b27d5dc43f1fc6254a977a8657c41370db0 | |
parent | SH: use for_each_of_cpu_node iterator (diff) | |
download | linux-7de8f4aa2f35583eea8efc7d7c2cc35d13964d97.tar.xz linux-7de8f4aa2f35583eea8efc7d7c2cc35d13964d97.zip |
x86: DT: use for_each_of_cpu_node iterator
Use the for_each_of_cpu_node iterator to iterate over cpu nodes. This
has the side effect of defaulting to iterating using "cpu" node names in
preference to the deprecated (for FDT) device_type == "cpu".
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | arch/x86/kernel/devicetree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/devicetree.c b/arch/x86/kernel/devicetree.c index f39f3a06c26f..7299dcbf8e85 100644 --- a/arch/x86/kernel/devicetree.c +++ b/arch/x86/kernel/devicetree.c @@ -140,7 +140,7 @@ static void __init dtb_cpu_setup(void) int ret; version = GET_APIC_VERSION(apic_read(APIC_LVR)); - for_each_node_by_type(dn, "cpu") { + for_each_of_cpu_node(dn) { ret = of_property_read_u32(dn, "reg", &apic_id); if (ret < 0) { pr_warn("%pOF: missing local APIC ID\n", dn); |