diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2012-07-05 16:07:32 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-07-09 16:36:36 -0400 |
commit | 3d9d8af330a891f141db420115238f01e4c6ece7 (patch) | |
tree | e184e7da8625c3de578e48a308f634eb68de0865 /drivers/bcma/host_pci.c | |
parent | cddec90254c3c3d20752bf9053c496035cdfef6a (diff) |
bcma: use custom printing functions
Having bus number printed makes it much easier to anaylze logs on
systems with more buses. For example Netgear WNDR4500 has 3 AMBA buses
in total, which makes standard log really messy.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma/host_pci.c')
-rw-r--r-- | drivers/bcma/host_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bcma/host_pci.c b/drivers/bcma/host_pci.c index c693c0b2639c..11b32d2642df 100644 --- a/drivers/bcma/host_pci.c +++ b/drivers/bcma/host_pci.c | |||
@@ -18,7 +18,7 @@ static void bcma_host_pci_switch_core(struct bcma_device *core) | |||
18 | pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN2, | 18 | pci_write_config_dword(core->bus->host_pci, BCMA_PCI_BAR0_WIN2, |
19 | core->wrap); | 19 | core->wrap); |
20 | core->bus->mapped_core = core; | 20 | core->bus->mapped_core = core; |
21 | pr_debug("Switched to core: 0x%X\n", core->id.id); | 21 | bcma_debug(core->bus, "Switched to core: 0x%X\n", core->id.id); |
22 | } | 22 | } |
23 | 23 | ||
24 | /* Provides access to the requested core. Returns base offset that has to be | 24 | /* Provides access to the requested core. Returns base offset that has to be |
@@ -188,7 +188,7 @@ static int __devinit bcma_host_pci_probe(struct pci_dev *dev, | |||
188 | 188 | ||
189 | /* SSB needed additional powering up, do we have any AMBA PCI cards? */ | 189 | /* SSB needed additional powering up, do we have any AMBA PCI cards? */ |
190 | if (!pci_is_pcie(dev)) | 190 | if (!pci_is_pcie(dev)) |
191 | pr_err("PCI card detected, report problems.\n"); | 191 | bcma_err(bus, "PCI card detected, report problems.\n"); |
192 | 192 | ||
193 | /* Map MMIO */ | 193 | /* Map MMIO */ |
194 | err = -ENOMEM; | 194 | err = -ENOMEM; |