diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2014-09-01 23:11:06 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-09-09 15:27:18 -0400 |
commit | dc8ecdd3a3fccf73fcb07711cde064ce5727f9d1 (patch) | |
tree | b9ded86a4b913f23d44a953e885f7f59f92d5ad0 /drivers/bcma/host_soc.c | |
parent | 39e90c77637b3892a39f2908aea57539e961c50e (diff) | |
download | op-kernel-dev-dc8ecdd3a3fccf73fcb07711cde064ce5727f9d1.zip op-kernel-dev-dc8ecdd3a3fccf73fcb07711cde064ce5727f9d1.tar.gz |
bcma: move bus struct setup into early part of host specific code
This change is important for SoC host. In future we will want to know
chip ID (needed for early MIPS boot) before doing cores scanning.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Acked-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma/host_soc.c')
-rw-r--r-- | drivers/bcma/host_soc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/bcma/host_soc.c b/drivers/bcma/host_soc.c index 1edd7e0..379e0d4e 100644 --- a/drivers/bcma/host_soc.c +++ b/drivers/bcma/host_soc.c @@ -178,6 +178,9 @@ int __init bcma_host_soc_register(struct bcma_soc *soc) bus->hosttype = BCMA_HOSTTYPE_SOC; bus->ops = &bcma_host_soc_ops; + /* Initialize struct, detect chip */ + bcma_init_bus(bus); + /* Register */ err = bcma_bus_early_register(bus, &soc->core_cc, &soc->core_mips); if (err) |