diff options
| author | Monk Liu <Monk.Liu@amd.com> | 2016-06-14 12:02:21 -0400 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2016-07-07 14:51:12 -0400 |
| commit | a909c6bd9f9223e91b40b1c56c2c81ae504295b3 (patch) | |
| tree | a5e678dd531c85277d8603a48a386d22b159c116 /drivers/gpu/drm/amd/amdgpu/amdgpu.h | |
| parent | c71dbd93eb0039838de920ae1712ff65fd648290 (diff) | |
| download | blackbird-op-linux-a909c6bd9f9223e91b40b1c56c2c81ae504295b3.tar.gz blackbird-op-linux-a909c6bd9f9223e91b40b1c56c2c81ae504295b3.zip | |
drm/amdgpu: fix ring debugfs bug
debugfs file added but not released after driver unloaded
Signed-off-by: Monk Liu <Monk.Liu@amd.com>
Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index b6c8309ce891..f41d23139a3a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -798,6 +798,9 @@ struct amdgpu_ring { unsigned cond_exe_offs; u64 cond_exe_gpu_addr; volatile u32 *cond_exe_cpu_addr; +#if defined(CONFIG_DEBUG_FS) + struct dentry *ent; +#endif }; /* |

