projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75c2dec
)
drm/amd/display: Print DC_VER at DC init
author
Harry Wentland
<
[email protected]
>
Tue, 21 Nov 2017 18:19:32 +0000
(13:19 -0500)
committer
Alex Deucher
<
[email protected]
>
Thu, 14 Dec 2017 15:55:16 +0000
(10:55 -0500)
This has proven helpful on other OSes to give a quick state of the
DC driver when a bug is reported.
Signed-off-by: Harry Wentland <
[email protected]
>
Reviewed-by: Tony Cheng <
[email protected]
>
Acked-by: Harry Wentland <
[email protected]
>
Signed-off-by: Alex Deucher <
[email protected]
>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index ccbf10e3bbb6879dcf2f1cebfd3db1dcc085ec23..8e7621931b92587f6a7e629e413abe465cb64c98 100644
(file)
--- a/
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@
-431,9
+431,9
@@
static int amdgpu_dm_init(struct amdgpu_device *adev)
adev->dm.dc = dc_create(&init_data);
if (adev->dm.dc) {
- DRM_INFO("Display Core initialized
!\n"
);
+ DRM_INFO("Display Core initialized
with v%s!\n", DC_VER
);
} else {
- DRM_INFO("Display Core failed to initialize
!\n"
);
+ DRM_INFO("Display Core failed to initialize
with v%s!\n", DC_VER
);
goto error;
}