diff options
Diffstat (limited to 'drivers/ssb/main.c')
-rw-r--r-- | drivers/ssb/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c index 5d1e9a0fc389..cde5ff7529eb 100644 --- a/drivers/ssb/main.c +++ b/drivers/ssb/main.c | |||
@@ -762,15 +762,14 @@ EXPORT_SYMBOL(ssb_bus_sdiobus_register); | |||
762 | #endif /* CONFIG_SSB_PCMCIAHOST */ | 762 | #endif /* CONFIG_SSB_PCMCIAHOST */ |
763 | 763 | ||
764 | #ifdef CONFIG_SSB_HOST_SOC | 764 | #ifdef CONFIG_SSB_HOST_SOC |
765 | int ssb_bus_ssbbus_register(struct ssb_bus *bus, unsigned long baseaddr, | 765 | int ssb_bus_host_soc_register(struct ssb_bus *bus, unsigned long baseaddr) |
766 | ssb_invariants_func_t get_invariants) | ||
767 | { | 766 | { |
768 | int err; | 767 | int err; |
769 | 768 | ||
770 | bus->bustype = SSB_BUSTYPE_SSB; | 769 | bus->bustype = SSB_BUSTYPE_SSB; |
771 | bus->ops = &ssb_host_soc_ops; | 770 | bus->ops = &ssb_host_soc_ops; |
772 | 771 | ||
773 | err = ssb_bus_register(bus, get_invariants, baseaddr); | 772 | err = ssb_bus_register(bus, ssb_host_soc_get_invariants, baseaddr); |
774 | if (!err) { | 773 | if (!err) { |
775 | ssb_info("Sonics Silicon Backplane found at address 0x%08lX\n", | 774 | ssb_info("Sonics Silicon Backplane found at address 0x%08lX\n", |
776 | baseaddr); | 775 | baseaddr); |