[PATCH] drm/amdgpu: no need fbcon under sriov
Christian König
ckoenig.leichtzumerken at gmail.com
Tue Jun 4 13:57:37 UTC 2019
Am 04.06.19 um 15:43 schrieb Yintian Tao:
> Under Sriov, there is no need of the support for fbcon.
NAK, that error message is not related to fbcon but means that PCIe
device removal is not supported.
Christian.
>
> Signed-off-by: Yintian Tao <yttao at amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> index 1f38d6f..28d095b 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> @@ -1012,7 +1012,8 @@ amdgpu_pci_remove(struct pci_dev *pdev)
> {
> struct drm_device *dev = pci_get_drvdata(pdev);
>
> - DRM_ERROR("Device removal is currently not supported outside of fbcon\n");
> + if (!amdgpu_sriov_vf(adev))
> + DRM_ERROR("Device removal is currently not supported outside of fbcon\n");
> drm_dev_unplug(dev);
> drm_dev_put(dev);
> pci_disable_device(pdev);
More information about the amd-gfx
mailing list