Skip to content

Commit

Permalink
cris/PCI: remove pcibios_assign_resources()
Browse files Browse the repository at this point in the history
There's no caller of pcibios_assign_resources() in the tree.  It is
exported, so an out-of-tree module *could* call it, but no other arch
exports pcibios_assign_resources(), so it would have to be a CRIS-specific
module.  I doubt such a caller exists.

CC: Mikael Starvik <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Signed-off-by: Jesper Nilsson <[email protected]>
  • Loading branch information
bjorn-helgaas authored and Jesper Nilsson committed Oct 3, 2012
1 parent 485802a commit 227c6fc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
25 changes: 0 additions & 25 deletions arch/cris/arch-v32/drivers/pci/bios.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,28 +102,3 @@ int pcibios_enable_device(struct pci_dev *dev, int mask)
pcibios_enable_irq(dev);
return 0;
}

int pcibios_assign_resources(void)
{
struct pci_dev *dev = NULL;
int idx;
struct resource *r;

while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
int class = dev->class >> 8;

/* Don't touch classless devices and host bridges */
if (!class || class == PCI_CLASS_BRIDGE_HOST)
continue;

for(idx=0; idx<6; idx++) {
r = &dev->resource[idx];

if (!r->start && r->end)
pci_assign_resource(dev, idx);
}
}
return 0;
}

EXPORT_SYMBOL(pcibios_assign_resources);
1 change: 0 additions & 1 deletion arch/cris/include/asm/pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ extern unsigned long pci_mem_start;

void pcibios_config_init(void);
struct pci_bus * pcibios_scan_root(int bus);
int pcibios_assign_resources(void);

void pcibios_set_master(struct pci_dev *dev);
void pcibios_penalize_isa_irq(int irq);
Expand Down

0 comments on commit 227c6fc

Please sign in to comment.