summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/include
diff options
context:
space:
mode:
authorTom St Denis <tom.stdenis@amd.com>2016-05-04 14:28:35 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-05-11 12:31:26 -0400
commit88a907d67c03e80a71c49681bbccf3bfebe74ab4 (patch)
treeb9eaf3e2d814cd91b3bef3cda7879bbab05ea301 /drivers/gpu/drm/amd/include
parentcb9e59d7e999c68b79f23d6016b08fc5d0bb8a8d (diff)
downloadlinux-88a907d67c03e80a71c49681bbccf3bfebe74ab4.tar.gz
linux-88a907d67c03e80a71c49681bbccf3bfebe74ab4.tar.xz
drm/amd/amdgpu: Add name field to amd_ip_funcs (v2)
Add name that we can print out in kernel messages to aid in debugging. v2: drop DAL changes for upstream Signed-off-by: Tom St Denis <tom.stdenis@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/include')
-rw-r--r--drivers/gpu/drm/amd/include/amd_shared.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/include/amd_shared.h b/drivers/gpu/drm/amd/include/amd_shared.h
index ea9ee4644139..6080951d539d 100644
--- a/drivers/gpu/drm/amd/include/amd_shared.h
+++ b/drivers/gpu/drm/amd/include/amd_shared.h
@@ -143,6 +143,8 @@ enum amd_pm_state_type {
};
struct amd_ip_funcs {
+ /* Name of IP block */
+ char *name;
/* sets up early driver state (pre sw_init), does not configure hw - Optional */
int (*early_init)(void *handle);
/* sets up late driver/hw state (post hw_init) - Optional */