aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/files/0480-drm-amd-powerplay-fix-fan-speed-percent-setting-erro.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/files/0480-drm-amd-powerplay-fix-fan-speed-percent-setting-erro.patch')
-rw-r--r--common/recipes-kernel/linux/files/0480-drm-amd-powerplay-fix-fan-speed-percent-setting-erro.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/common/recipes-kernel/linux/files/0480-drm-amd-powerplay-fix-fan-speed-percent-setting-erro.patch b/common/recipes-kernel/linux/files/0480-drm-amd-powerplay-fix-fan-speed-percent-setting-erro.patch
deleted file mode 100644
index 7b52f7fa..00000000
--- a/common/recipes-kernel/linux/files/0480-drm-amd-powerplay-fix-fan-speed-percent-setting-erro.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From ec3f52436589a4b347443fec0181f4143cf2c52a Mon Sep 17 00:00:00 2001
-From: Eric Huang <JinHuiEric.Huang@amd.com>
-Date: Mon, 11 Apr 2016 14:28:55 -0400
-Subject: [PATCH 0480/1110] drm/amd/powerplay: fix fan speed percent setting
- error on Fiji
-
-Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
-Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
----
- drivers/gpu/drm/amd/powerplay/hwmgr/fiji_thermal.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/fiji_thermal.c b/drivers/gpu/drm/amd/powerplay/hwmgr/fiji_thermal.c
-index e2b448f..92976b6 100644
---- a/drivers/gpu/drm/amd/powerplay/hwmgr/fiji_thermal.c
-+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/fiji_thermal.c
-@@ -221,8 +221,8 @@ int fiji_fan_ctrl_set_fan_speed_percent(struct pp_hwmgr *hwmgr,
- if (duty100 == 0)
- return -EINVAL;
-
-- tmp64 = (uint64_t)speed * 100;
-- do_div(tmp64, duty100);
-+ tmp64 = (uint64_t)speed * duty100;
-+ do_div(tmp64, 100);
- duty = (uint32_t)tmp64;
-
- PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
---
-2.7.4
-