diff options
author | Arsalan H. Awan <Arsalan_Awan@mentor.com> | 2019-08-28 14:52:21 +0500 |
---|---|---|
committer | Arsalan H. Awan <Arsalan_Awan@mentor.com> | 2019-08-28 15:24:40 +0500 |
commit | cc5953c3a2f348543ed44492244627ee0de76239 (patch) | |
tree | 23430cd57f73086e7176e8be4375e5ad3b4079c0 /meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71/0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch | |
parent | 4149413febf799293758015e230e0ce865ed9cb5 (diff) | |
download | meta-amd-cc5953c3a2f348543ed44492244627ee0de76239.tar.gz meta-amd-cc5953c3a2f348543ed44492244627ee0de76239.tar.bz2 meta-amd-cc5953c3a2f348543ed44492244627ee0de76239.zip |
common: rename to meta-amd-bsp
This renames common layers to meta-amd-bsp as it is going to hold all
the bsps in it in the following commits.
This also changes the layer title in layer.conf from "amd" to "amd-bsp"
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
Diffstat (limited to 'meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71/0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch')
-rw-r--r-- | meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71/0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71/0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71/0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch new file mode 100644 index 00000000..454ecb4d --- /dev/null +++ b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.14.71/0293-drm-amd-display-Unhardcode-acrtc-max_cursor_-height-.patch @@ -0,0 +1,32 @@ +From af1703ade25d63e527cd4ad221e9ce887e522623 Mon Sep 17 00:00:00 2001 +From: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com> +Date: Wed, 22 Feb 2017 15:31:47 -0500 +Subject: [PATCH 0293/4131] drm/amd/display: Unhardcode + acrtc->max_cursor_{height,width} + +Signed-off-by: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com> +Reviewed-by: Jordan Lazare <Jordan.Lazare@amd.com> +Reviewed-by: Harry Wentland <harry.wentland@amd.com> +Signed-off-by: Alex Deucher <alexander.deucher@amd.com> +--- + drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c +index 03f92de..90c1fbb 100644 +--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c ++++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c +@@ -1777,8 +1777,8 @@ int amdgpu_dm_crtc_init(struct amdgpu_display_manager *dm, + + drm_crtc_helper_add(&acrtc->base, &amdgpu_dm_crtc_helper_funcs); + +- acrtc->max_cursor_width = 128; +- acrtc->max_cursor_height = 128; ++ acrtc->max_cursor_width = dm->adev->dm.dc->caps.max_cursor_size; ++ acrtc->max_cursor_height = dm->adev->dm.dc->caps.max_cursor_size; + + acrtc->crtc_id = crtc_index; + acrtc->base.enabled = false; +-- +2.7.4 + |