diff options
author | David Woodhouse <dwmw@amazon.co.uk> | 2017-04-12 13:25:58 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-04-20 08:47:47 -0500 |
commit | f66e225828c1b046c7db1db65b0dd2d135f6a2da (patch) | |
tree | 69056a22a4d9afcacdc99779741f65f78f0d6cc0 /arch/sh | |
parent | dca40b186b757c7f9a05f870f69e0dfaeca59d7b (diff) | |
download | linux-f66e225828c1b046c7db1db65b0dd2d135f6a2da.tar.gz linux-f66e225828c1b046c7db1db65b0dd2d135f6a2da.tar.bz2 linux-f66e225828c1b046c7db1db65b0dd2d135f6a2da.zip |
PCI: Add BAR index argument to pci_mmap_page_range()
In all cases we know which BAR it is. Passing it in means that arch code
(or generic code; watch this space) won't have to go looking for it again.
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/drivers/pci/pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sh/drivers/pci/pci.c b/arch/sh/drivers/pci/pci.c index 84563e39a5b8..c8b36b7ceb98 100644 --- a/arch/sh/drivers/pci/pci.c +++ b/arch/sh/drivers/pci/pci.c @@ -269,7 +269,8 @@ void __ref pcibios_report_status(unsigned int status_mask, int warn) } } -int pci_mmap_page_range(struct pci_dev *dev, struct vm_area_struct *vma, +int pci_mmap_page_range(struct pci_dev *dev, int bar, + struct vm_area_struct *vma, enum pci_mmap_state mmap_state, int write_combine) { /* |