Skip to content

Commit

Permalink
riscv: use for_each_of_cpu_node iterator
Browse files Browse the repository at this point in the history
Use the new for_each_of_cpu_node() helper to iterate over cpu nodes
instead of open coding. Note that this will allow matching also on the
node name instead of the (for FDT) deprecated device_type property.

Signed-off-by: Johan Hovold <[email protected]>
Signed-off-by: Palmer Dabbelt <[email protected]>
  • Loading branch information
jhovold authored and palmer-dabbelt committed Feb 11, 2019
1 parent e3d794d commit dd81c8a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions arch/riscv/kernel/cpufeature.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bool has_fpu __read_mostly;

void riscv_fill_hwcap(void)
{
struct device_node *node = NULL;
struct device_node *node;
const char *isa;
size_t i;
static unsigned long isa2hwcap[256] = {0};
Expand All @@ -46,9 +46,10 @@ void riscv_fill_hwcap(void)
* We don't support running Linux on hertergenous ISA systems. For
* now, we just check the ISA of the first "okay" processor.
*/
while ((node = of_find_node_by_type(node, "cpu")))
for_each_of_cpu_node(node) {
if (riscv_of_processor_hartid(node) >= 0)
break;
}
if (!node) {
pr_warn("Unable to find \"cpu\" devicetree entry\n");
return;
Expand Down
4 changes: 2 additions & 2 deletions arch/riscv/kernel/smpboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ void __init smp_prepare_cpus(unsigned int max_cpus)

void __init setup_smp(void)
{
struct device_node *dn = NULL;
struct device_node *dn;
int hart;
bool found_boot_cpu = false;
int cpuid = 1;

while ((dn = of_find_node_by_type(dn, "cpu"))) {
for_each_of_cpu_node(dn) {
hart = riscv_of_processor_hartid(dn);
if (hart < 0)
continue;
Expand Down

0 comments on commit dd81c8a

Please sign in to comment.