diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2020-02-04 12:55:38 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-02-26 14:21:12 -0500 |
commit | 15997544a38f37a5e9d9b56be5783150c3ceeced (patch) | |
tree | 3a5759477fe8fbfc8228adf9d346f0ab82b47bc6 /drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | |
parent | a4c5b1bb7b93b6014c066cd3ff3ce8d3861f922f (diff) | |
download | lwn-15997544a38f37a5e9d9b56be5783150c3ceeced.tar.gz lwn-15997544a38f37a5e9d9b56be5783150c3ceeced.zip |
drm/amdgpu/sa: move debugfs init into core amdgpu debugfs
In order to remove the load and unload drm callbacks,
we need to reorder the init sequence to move all the drm
debugfs file handling. Do this for SA (sub allocator).
Tested-by: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c index 01eb6daa7485..24bd99fedf33 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c @@ -1297,6 +1297,10 @@ int amdgpu_debugfs_init(struct amdgpu_device *adev) return r; } + if (amdgpu_debugfs_sa_init(adev)) { + dev_err(adev->dev, "failed to register debugfs file for SA\n"); + } + return amdgpu_debugfs_add_files(adev, amdgpu_debugfs_list, ARRAY_SIZE(amdgpu_debugfs_list)); } |