mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
powerpc/pci: Remove duplicate logic
Since the logic to reset PCI secondary bus by PCI config register PCI_BRIDGE_CTL_BUS_RESET is included in pci_reset_secondary_bus(), we needn't implement another one. Remove the duplicate implementation and call pci_reset_secondary_bus(). Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
9e33002fd1
commit
21dd5a43d0
1 changed files with 1 additions and 10 deletions
|
@ -123,21 +123,12 @@ resource_size_t pcibios_window_alignment(struct pci_bus *bus,
|
||||||
|
|
||||||
void pcibios_reset_secondary_bus(struct pci_dev *dev)
|
void pcibios_reset_secondary_bus(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
u16 ctrl;
|
|
||||||
|
|
||||||
if (ppc_md.pcibios_reset_secondary_bus) {
|
if (ppc_md.pcibios_reset_secondary_bus) {
|
||||||
ppc_md.pcibios_reset_secondary_bus(dev);
|
ppc_md.pcibios_reset_secondary_bus(dev);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &ctrl);
|
pci_reset_secondary_bus(dev);
|
||||||
ctrl |= PCI_BRIDGE_CTL_BUS_RESET;
|
|
||||||
pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
|
|
||||||
msleep(2);
|
|
||||||
|
|
||||||
ctrl &= ~PCI_BRIDGE_CTL_BUS_RESET;
|
|
||||||
pci_write_config_word(dev, PCI_BRIDGE_CONTROL, ctrl);
|
|
||||||
ssleep(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static resource_size_t pcibios_io_size(const struct pci_controller *hose)
|
static resource_size_t pcibios_io_size(const struct pci_controller *hose)
|
||||||
|
|
Loading…
Add table
Reference in a new issue