diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2016-10-06 20:36:56 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-10-12 05:56:46 +0200 |
commit | 5649e4ced9671e01bdb1f50b2b5987d44c9a6d3d (patch) | |
tree | d3b35795070910b180c0aa06242ed8b322a04b6b /drivers/pci/host/pci-keystone.h | |
parent | PCI: keystone: Use generic DesignWare accessors (diff) | |
download | linux-5649e4ced9671e01bdb1f50b2b5987d44c9a6d3d.tar.xz linux-5649e4ced9671e01bdb1f50b2b5987d44c9a6d3d.zip |
PCI: keystone: Pass keystone_pcie, not address, to IRQ functions
Instead of passing the application register base to IRQ functions,
pass the struct keystone_pcie. This will allow them to use register
accessors. No functional change intended.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/host/pci-keystone.h')
-rw-r--r-- | drivers/pci/host/pci-keystone.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/pci/host/pci-keystone.h b/drivers/pci/host/pci-keystone.h index a5b0cb2ba4d7..fe2f741739c2 100644 --- a/drivers/pci/host/pci-keystone.h +++ b/drivers/pci/host/pci-keystone.h @@ -45,9 +45,8 @@ phys_addr_t ks_dw_pcie_get_msi_addr(struct pcie_port *pp); /* Keystone specific PCI controller APIs */ void ks_dw_pcie_enable_legacy_irqs(struct keystone_pcie *ks_pcie); void ks_dw_pcie_handle_legacy_irq(struct keystone_pcie *ks_pcie, int offset); -void ks_dw_pcie_enable_error_irq(void __iomem *reg_base); -irqreturn_t ks_dw_pcie_handle_error_irq(struct device *dev, - void __iomem *reg_base); +void ks_dw_pcie_enable_error_irq(struct keystone_pcie *ks_pcie); +irqreturn_t ks_dw_pcie_handle_error_irq(struct keystone_pcie *ks_pcie); int ks_dw_pcie_host_init(struct keystone_pcie *ks_pcie, struct device_node *msi_intc_np); int ks_dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus, |