diff options
author | Christoph Hellwig <hch@lst.de> | 2018-07-30 10:38:42 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2018-07-30 23:58:01 +0300 |
commit | a8651194f9f61406cb8926feeeb7829258295b2a (patch) | |
tree | f428ce34e6a3bdcafbc3afa5d351f04a7f7e1269 /arch/sh/drivers | |
parent | d6488ac19aabcc6c85a74b69eaf1b7301124c323 (diff) | |
download | linux-a8651194f9f61406cb8926feeeb7829258295b2a.tar.xz |
PCI: Call dma_debug_add_bus() for pci_bus_type from PCI core
There is nothing arch-specific about PCI or dma-debug, so call
dma_debug_add_bus() from the PCI core just after registering the bus type.
Most of dma-debug is already generic; this just adds reporting of pending
dma-allocations on driver unload for arches other than powerpc, sh, and
x86.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Diffstat (limited to 'arch/sh/drivers')
-rw-r--r-- | arch/sh/drivers/pci/pci.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c index e5b7437ab4af..8256626bc53c 100644 --- a/arch/sh/drivers/pci/pci.c +++ b/arch/sh/drivers/pci/pci.c @@ -160,8 +160,6 @@ static int __init pcibios_init(void) for (hose = hose_head; hose; hose = hose->next) pcibios_scanbus(hose); - dma_debug_add_bus(&pci_bus_type); - pci_initialized = 1; return 0; |