aboutsummaryrefslogtreecommitdiffstats
path: root/meta-r1000/recipes-kernel/linux/linux-yocto-4.14.71/4463-drm-amd-display-fix-a-32-bit-shift-meant-to-be-64-wa.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-r1000/recipes-kernel/linux/linux-yocto-4.14.71/4463-drm-amd-display-fix-a-32-bit-shift-meant-to-be-64-wa.patch')
-rw-r--r--meta-r1000/recipes-kernel/linux/linux-yocto-4.14.71/4463-drm-amd-display-fix-a-32-bit-shift-meant-to-be-64-wa.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta-r1000/recipes-kernel/linux/linux-yocto-4.14.71/4463-drm-amd-display-fix-a-32-bit-shift-meant-to-be-64-wa.patch b/meta-r1000/recipes-kernel/linux/linux-yocto-4.14.71/4463-drm-amd-display-fix-a-32-bit-shift-meant-to-be-64-wa.patch
deleted file mode 100644
index 991fd3bf..00000000
--- a/meta-r1000/recipes-kernel/linux/linux-yocto-4.14.71/4463-drm-amd-display-fix-a-32-bit-shift-meant-to-be-64-wa.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 9c000464a9f5cb8ee6f6d7ffdb9bbc0f8e0c47f3 Mon Sep 17 00:00:00 2001
-From: Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
-Date: Mon, 23 Apr 2018 14:39:23 -0400
-Subject: [PATCH 4463/5725] drm/amd/display: fix a 32 bit shift meant to be 64
- warning
-
-Signed-off-by: Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
-Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
-Acked-by: Harry Wentland <harry.wentland@amd.com>
----
- drivers/gpu/drm/amd/display/include/fixed31_32.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/gpu/drm/amd/display/include/fixed31_32.h b/drivers/gpu/drm/amd/display/include/fixed31_32.h
-index bd8a304..76f64e9 100644
---- a/drivers/gpu/drm/amd/display/include/fixed31_32.h
-+++ b/drivers/gpu/drm/amd/display/include/fixed31_32.h
-@@ -209,7 +209,7 @@ static inline struct fixed31_32 dc_fixpt_clamp(
- static inline struct fixed31_32 dc_fixpt_shl(struct fixed31_32 arg, unsigned char shift)
- {
- ASSERT(((arg.value >= 0) && (arg.value <= LLONG_MAX >> shift)) ||
-- ((arg.value < 0) && (arg.value >= (LLONG_MIN / (1 << shift)))));
-+ ((arg.value < 0) && (arg.value >= (LLONG_MIN / (1LL << shift)))));
-
- arg.value = arg.value << shift;
-
---
-2.7.4
-