Commit 35616a4a authored by Gerd Hoffmann's avatar Gerd Hoffmann

drm: drop resource_id parameter from drm_fb_helper_remove_conflicting_pci_framebuffers

Not needed any more for remove_conflicting_pci_framebuffers calls.
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20190822090645.25410-3-kraxel@redhat.com
parent 0a845969
...@@ -1031,7 +1031,7 @@ static int amdgpu_pci_probe(struct pci_dev *pdev, ...@@ -1031,7 +1031,7 @@ static int amdgpu_pci_probe(struct pci_dev *pdev,
} }
/* Get rid of things like offb */ /* Get rid of things like offb */
ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, 0, "amdgpudrmfb"); ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "amdgpudrmfb");
if (ret) if (ret)
return ret; return ret;
......
...@@ -114,7 +114,7 @@ static int bochs_pci_probe(struct pci_dev *pdev, ...@@ -114,7 +114,7 @@ static int bochs_pci_probe(struct pci_dev *pdev,
return -ENOMEM; return -ENOMEM;
} }
ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, 0, "bochsdrmfb"); ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "bochsdrmfb");
if (ret) if (ret)
return ret; return ret;
......
...@@ -532,7 +532,7 @@ static int cirrus_pci_probe(struct pci_dev *pdev, ...@@ -532,7 +532,7 @@ static int cirrus_pci_probe(struct pci_dev *pdev,
struct cirrus_device *cirrus; struct cirrus_device *cirrus;
int ret; int ret;
ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, 0, "cirrusdrmfb"); ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "cirrusdrmfb");
if (ret) if (ret)
return ret; return ret;
......
...@@ -46,7 +46,7 @@ MODULE_DEVICE_TABLE(pci, pciidlist); ...@@ -46,7 +46,7 @@ MODULE_DEVICE_TABLE(pci, pciidlist);
static int mga_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) static int mga_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
{ {
drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, 0, "mgag200drmfb"); drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "mgag200drmfb");
return drm_get_pci_dev(pdev, ent, &driver); return drm_get_pci_dev(pdev, ent, &driver);
} }
......
...@@ -83,7 +83,7 @@ qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -83,7 +83,7 @@ qxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
if (ret) if (ret)
goto free_dev; goto free_dev;
ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, 0, "qxl"); ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "qxl");
if (ret) if (ret)
goto disable_pci; goto disable_pci;
......
...@@ -329,7 +329,7 @@ static int radeon_pci_probe(struct pci_dev *pdev, ...@@ -329,7 +329,7 @@ static int radeon_pci_probe(struct pci_dev *pdev,
return -EPROBE_DEFER; return -EPROBE_DEFER;
/* Get rid of things like offb */ /* Get rid of things like offb */
ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, 0, "radeondrmfb"); ret = drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, "radeondrmfb");
if (ret) if (ret)
return ret; return ret;
......
...@@ -56,7 +56,6 @@ static int virtio_gpu_pci_quirk(struct drm_device *dev, struct virtio_device *vd ...@@ -56,7 +56,6 @@ static int virtio_gpu_pci_quirk(struct drm_device *dev, struct virtio_device *vd
dev->pdev = pdev; dev->pdev = pdev;
if (vga) if (vga)
drm_fb_helper_remove_conflicting_pci_framebuffers(pdev, drm_fb_helper_remove_conflicting_pci_framebuffers(pdev,
0,
"virtiodrmfb"); "virtiodrmfb");
/* /*
......
...@@ -539,18 +539,16 @@ drm_fb_helper_remove_conflicting_framebuffers(struct apertures_struct *a, ...@@ -539,18 +539,16 @@ drm_fb_helper_remove_conflicting_framebuffers(struct apertures_struct *a,
/** /**
* drm_fb_helper_remove_conflicting_pci_framebuffers - remove firmware-configured framebuffers for PCI devices * drm_fb_helper_remove_conflicting_pci_framebuffers - remove firmware-configured framebuffers for PCI devices
* @pdev: PCI device * @pdev: PCI device
* @resource_id: index of PCI BAR configuring framebuffer memory
* @name: requesting driver name * @name: requesting driver name
* *
* This function removes framebuffer devices (eg. initialized by firmware) * This function removes framebuffer devices (eg. initialized by firmware)
* using memory range configured for @pdev's BAR @resource_id. * using memory range configured for any of @pdev's memory bars.
* *
* The function assumes that PCI device with shadowed ROM drives a primary * The function assumes that PCI device with shadowed ROM drives a primary
* display and so kicks out vga16fb. * display and so kicks out vga16fb.
*/ */
static inline int static inline int
drm_fb_helper_remove_conflicting_pci_framebuffers(struct pci_dev *pdev, drm_fb_helper_remove_conflicting_pci_framebuffers(struct pci_dev *pdev,
int resource_id,
const char *name) const char *name)
{ {
int ret = 0; int ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment