aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/linux-yocto-4.14.71/0183-drm-amd-display-Fix-compile-warnings.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/linux-yocto-4.14.71/0183-drm-amd-display-Fix-compile-warnings.patch')
-rw-r--r--common/recipes-kernel/linux/linux-yocto-4.14.71/0183-drm-amd-display-Fix-compile-warnings.patch51
1 files changed, 0 insertions, 51 deletions
diff --git a/common/recipes-kernel/linux/linux-yocto-4.14.71/0183-drm-amd-display-Fix-compile-warnings.patch b/common/recipes-kernel/linux/linux-yocto-4.14.71/0183-drm-amd-display-Fix-compile-warnings.patch
deleted file mode 100644
index 5dfffc80..00000000
--- a/common/recipes-kernel/linux/linux-yocto-4.14.71/0183-drm-amd-display-Fix-compile-warnings.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-From bf717d008a9c564dbffaa626c8a3d0efdec19b13 Mon Sep 17 00:00:00 2001
-From: Anthony Koo <Anthony.Koo@amd.com>
-Date: Wed, 25 Jan 2017 09:31:45 -0500
-Subject: [PATCH 0183/4131] drm/amd/display: Fix compile warnings
-
-1. Fix init of integer
-2. Fix mixed declarations
-
-Signed-off-by: Anthony Koo <anthony.koo@amd.com>
-Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
-Acked-by: Harry Wentland <Harry.Wentland@amd.com>
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
----
- drivers/gpu/drm/amd/display/modules/freesync/freesync.c | 7 +++----
- 1 file changed, 3 insertions(+), 4 deletions(-)
-
-diff --git a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
-index e0703c5..1ee7327 100644
---- a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
-+++ b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c
-@@ -208,6 +208,8 @@ bool mod_freesync_add_stream(struct mod_freesync *mod_freesync,
- struct core_stream *core_stream = NULL;
- struct core_dc *core_dc = NULL;
- struct core_freesync *core_freesync = NULL;
-+ int persistent_freesync_enable = 0;
-+ struct persistent_data_flag flag;
-
- if (mod_freesync == NULL)
- return false;
-@@ -216,9 +218,6 @@ bool mod_freesync_add_stream(struct mod_freesync *mod_freesync,
- core_stream = DC_STREAM_TO_CORE(stream);
- core_dc = DC_TO_CORE(core_freesync->dc);
-
-- int persistent_freesync_enable = 0;
-- struct persistent_data_flag flag;
--
- flag.save_per_edid = true;
- flag.save_per_link = false;
-
-@@ -779,7 +778,7 @@ bool mod_freesync_get_state(struct mod_freesync *mod_freesync,
- const struct dc_stream *stream,
- struct mod_freesync_params *freesync_params)
- {
-- unsigned int index = NULL;
-+ unsigned int index = 0;
- struct core_freesync *core_freesync = NULL;
-
- if (mod_freesync == NULL)
---
-2.7.4
-