diff options
| author | Bjorn Helgaas <bhelgaas@google.com> | 2024-09-19 14:25:25 -0500 |
|---|---|---|
| committer | Bjorn Helgaas <bhelgaas@google.com> | 2024-09-19 14:25:25 -0500 |
| commit | dceed69701ac2ac357c062117a3f201096c4bdab (patch) | |
| tree | 9067351910450b215102b11a63cff8ac49769cce /drivers/pci/pci.h | |
| parent | 59b748cd62e4b1af6fb4992ce9d07b4f4c2189b3 (diff) | |
| parent | 2eb20b96d7696dc354e1b38c511418b56291013c (diff) | |
| download | linux-dceed69701ac2ac357c062117a3f201096c4bdab.tar.gz linux-dceed69701ac2ac357c062117a3f201096c4bdab.tar.bz2 linux-dceed69701ac2ac357c062117a3f201096c4bdab.zip | |
Merge branch 'pci/devres'
- Export pcim_request_region(), a managed counterpart of
pci_request_region(), for use by drivers (Philipp Stanner)
- Request the PCI BAR used by xboxvideo (Philipp Stanner)
- Export pcim_iomap_region() and deprecate pcim_iomap_regions() (Philipp
Stanner)
- Request and map drm/ast BARs with pcim_iomap_region() (Philipp Stanner)
* pci/devres:
drm/ast: Request PCI BAR with devres
PCI: Deprecate pcim_iomap_regions() in favor of pcim_iomap_region()
drm/vboxvideo: Add PCI region request
PCI: Make pcim_request_region() a public function
Diffstat (limited to 'drivers/pci/pci.h')
| -rw-r--r-- | drivers/pci/pci.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h index 061cc1b48fd8..fa3771cd8785 100644 --- a/drivers/pci/pci.h +++ b/drivers/pci/pci.h @@ -892,8 +892,6 @@ static inline pci_power_t mid_pci_get_power_state(struct pci_dev *pdev) #endif int pcim_intx(struct pci_dev *dev, int enable); - -int pcim_request_region(struct pci_dev *pdev, int bar, const char *name); int pcim_request_region_exclusive(struct pci_dev *pdev, int bar, const char *name); void pcim_release_region(struct pci_dev *pdev, int bar); |
