提交 d6bda7b4 编写于 作者: A Alex Deucher

drm/amdgpu: handle runtime pm in drm pre/post close

Close was not handled correctly.
Reviewed-by: NMichel Dänzer <michel.daenzer@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 32c59dc1
...@@ -601,6 +601,9 @@ void amdgpu_driver_postclose_kms(struct drm_device *dev, ...@@ -601,6 +601,9 @@ void amdgpu_driver_postclose_kms(struct drm_device *dev,
kfree(fpriv); kfree(fpriv);
file_priv->driver_priv = NULL; file_priv->driver_priv = NULL;
pm_runtime_mark_last_busy(dev->dev);
pm_runtime_put_autosuspend(dev->dev);
} }
/** /**
...@@ -615,6 +618,7 @@ void amdgpu_driver_postclose_kms(struct drm_device *dev, ...@@ -615,6 +618,7 @@ void amdgpu_driver_postclose_kms(struct drm_device *dev,
void amdgpu_driver_preclose_kms(struct drm_device *dev, void amdgpu_driver_preclose_kms(struct drm_device *dev,
struct drm_file *file_priv) struct drm_file *file_priv)
{ {
pm_runtime_get_sync(dev->dev);
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册