Commit 6dd6b764 authored by Thomas Zimmermann's avatar Thomas Zimmermann

drm/vmwgfx: Remove reference to struct drm_device.pdev

Using struct drm_device.pdev is deprecated in favor of drm_device.dev.
The reference to the field was reintroduced during a rebase.
Signed-off-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Fixes: 9703bb32 ("drm/vmwgfx: Switch to a managed drm device")
Reviewed-by: default avatarZack Rusin <zackr@vmware.com>
Cc: Zack Rusin <zackr@vmware.com>
Cc: Martin Krastev <krastevm@vmware.com>
Cc: Roland Scheidegger <sroland@vmware.com>
Cc: VMware Graphics <linux-graphics-maintainer@vmware.com>
Cc: dri-devel@lists.freedesktop.org
Link: https://patchwork.freedesktop.org/patch/msgid/20210118131420.15874-6-tzimmermann@suse.de
parent c31eb10f
...@@ -1516,7 +1516,6 @@ static int vmw_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -1516,7 +1516,6 @@ static int vmw_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
if (IS_ERR(vmw)) if (IS_ERR(vmw))
return PTR_ERR(vmw); return PTR_ERR(vmw);
vmw->drm.pdev = pdev;
pci_set_drvdata(pdev, &vmw->drm); pci_set_drvdata(pdev, &vmw->drm);
ret = vmw_driver_load(vmw, ent->device); ret = vmw_driver_load(vmw, ent->device);
......
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