diff options
author | Dave Airlie <airlied@redhat.com> | 2018-07-20 03:23:37 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-07-20 03:23:44 +0300 |
commit | b83ce39b929ad55808e6a4b71579b05201f59335 (patch) | |
tree | c717e8c146bdd5eb1d0d44c92fd95dda8d931a6a /drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | |
parent | bf642e3a1996f1ed8f083c5ecd4b51270a9e11bc (diff) | |
parent | 2d95ceb45459357288058c646022019d257ae04b (diff) | |
download | linux-b83ce39b929ad55808e6a4b71579b05201f59335.tar.xz |
Merge branch 'drm-fixes-4.18' of git://people.freedesktop.org/~agd5f/linux into drm-fixes
Fixes for 4.18. The ACP patch is a bit bigger than I would like
at this point, but it should have gone in long ago, it just fell
through the cracks. The others are pretty small and straight-forward.
- ACP fix for boards with 2 I2S instances
- DP fix for CZ, vega
- Fix for a hybrid graphics laptop
- Fix a resume regression
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180718162603.2747-1-alexander.deucher@amd.com
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_device.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 6e5284e6c028..2c5f093e79e3 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -2747,6 +2747,9 @@ int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon) if (r) return r; + /* Make sure IB tests flushed */ + flush_delayed_work(&adev->late_init_work); + /* blat the mode back in */ if (fbcon) { if (!amdgpu_device_has_dc_support(adev)) { |