diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-01-19 10:30:30 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-01-23 22:47:55 +0300 |
commit | c5ed1df781cb544d4e4d189bb5b6ec7336d8888c (patch) | |
tree | d335c7b14b4be734e3ca6d79f9516e5473b387c7 /drivers/bcma/host_soc.c | |
parent | 908414af255ea974bd0cfe54918d7957cd457d15 (diff) | |
download | linux-c5ed1df781cb544d4e4d189bb5b6ec7336d8888c.tar.xz |
bcma: use standard bus scanning during early register
Starting with kernel 3.19-rc1 early registration of bcma on MIPS is done
a bit later, with memory allocator available. This allows us to simplify
code by using standard bus scanning method.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/bcma/host_soc.c')
-rw-r--r-- | drivers/bcma/host_soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bcma/host_soc.c b/drivers/bcma/host_soc.c index 335cbcfd945b..2dce34789329 100644 --- a/drivers/bcma/host_soc.c +++ b/drivers/bcma/host_soc.c @@ -193,7 +193,7 @@ int __init bcma_host_soc_init(struct bcma_soc *soc) int err; /* Scan bus and initialize it */ - err = bcma_bus_early_register(bus, &soc->core_cc, &soc->core_mips); + err = bcma_bus_early_register(bus); if (err) iounmap(bus->mmio); |