|
@@ -247,13 +247,9 @@ static struct hw_pci kirkwood_pci __initdata = {
|
|
|
|
|
|
static void __init add_pcie_port(int index, void __iomem *base)
|
|
|
{
|
|
|
- pr_info("Kirkwood PCIe port %d: ", index);
|
|
|
-
|
|
|
- if (orion_pcie_link_up(base)) {
|
|
|
- pr_info("link up\n");
|
|
|
- pcie_port_map[num_pcie_ports++] = index;
|
|
|
- } else
|
|
|
- pr_info("link down, ignoring\n");
|
|
|
+ pcie_port_map[num_pcie_ports++] = index;
|
|
|
+ pr_info("Kirkwood PCIe port %d: link %s\n", index,
|
|
|
+ orion_pcie_link_up(base) ? "up" : "down");
|
|
|
}
|
|
|
|
|
|
void __init kirkwood_pcie_init(unsigned int portmask)
|