Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c334e25c authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville
Browse files

bcma: add new cores at the end of list



This makes order in list more natural and fixes core->core_unit for more
than 2 cores.

Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e1ac4b40
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -491,7 +491,7 @@ int bcma_bus_scan(struct bcma_bus *bus)
			  core->id.manuf, core->id.id, core->id.rev,
			  core->id.class);

		list_add(&core->list, &bus->cores);
		list_add_tail(&core->list, &bus->cores);
	}

	if (bus->hosttype == BCMA_HOSTTYPE_SOC)
@@ -546,7 +546,7 @@ int __init bcma_bus_scan_early(struct bcma_bus *bus,
			  core->id.manuf, core->id.id, core->id.rev,
			  core->id.class);

		list_add(&core->list, &bus->cores);
		list_add_tail(&core->list, &bus->cores);
		err = 0;
		break;
	}