Commit 770af585 authored by Michał Mirosław's avatar Michał Mirosław Committed by Daniel Vetter
parent 020aa2ec
...@@ -28,26 +28,6 @@ ...@@ -28,26 +28,6 @@
#include "virtgpu_drv.h" #include "virtgpu_drv.h"
static void virtio_pci_kick_out_firmware_fb(struct pci_dev *pci_dev)
{
struct apertures_struct *ap;
bool primary;
ap = alloc_apertures(1);
if (!ap)
return;
ap->ranges[0].base = pci_resource_start(pci_dev, 0);
ap->ranges[0].size = pci_resource_len(pci_dev, 0);
primary = pci_dev->resource[PCI_ROM_RESOURCE].flags
& IORESOURCE_ROM_SHADOW;
drm_fb_helper_remove_conflicting_framebuffers(ap, "virtiodrmfb", primary);
kfree(ap);
}
int drm_virtio_init(struct drm_driver *driver, struct virtio_device *vdev) int drm_virtio_init(struct drm_driver *driver, struct virtio_device *vdev)
{ {
struct drm_device *dev; struct drm_device *dev;
...@@ -69,7 +49,9 @@ int drm_virtio_init(struct drm_driver *driver, struct virtio_device *vdev) ...@@ -69,7 +49,9 @@ int drm_virtio_init(struct drm_driver *driver, struct virtio_device *vdev)
pname); pname);
dev->pdev = pdev; dev->pdev = pdev;
if (vga) if (vga)
virtio_pci_kick_out_firmware_fb(pdev); drm_fb_helper_remove_conflicting_pci_framebuffers(pdev,
0,
"virtiodrmfb");
snprintf(unique, sizeof(unique), "pci:%s", pname); snprintf(unique, sizeof(unique), "pci:%s", pname);
ret = drm_dev_set_unique(dev, unique); ret = drm_dev_set_unique(dev, unique);
......
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