aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/inc/core_status.h
diff options
context:
space:
mode:
authorAshley Thomas <Ashley.Thomas2@amd.com>2020-10-12 21:33:27 -0700
committerAlex Deucher <alexander.deucher@amd.com>2020-11-02 15:30:47 -0500
commit7dd4f4df99109b280cd996602d7533cc0b2e7348 (patch)
tree1fe522fdc441e2f4e86faec6414d796b10e7c00b /drivers/gpu/drm/amd/display/dc/inc/core_status.h
parentdrm/amd/display: 3.2.109 (diff)
downloadlinux-dev-7dd4f4df99109b280cd996602d7533cc0b2e7348.tar.xz
linux-dev-7dd4f4df99109b280cd996602d7533cc0b2e7348.zip
drm/amd/display: fail instead of div by zero/bugcheck
[why] If pbn_per_slot is 0, fail instead of dividing by zero and bugchecking. [how] Check for zero divisor before division operation. Signed-off-by: Ashley Thomas <Ashley.Thomas2@amd.com> Reviewed-by: Wyatt Wood <Wyatt.Wood@amd.com> Acked-by: Qingqing Zhuo <qingqing.zhuo@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc/core_status.h')
-rw-r--r--drivers/gpu/drm/amd/display/dc/inc/core_status.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/core_status.h b/drivers/gpu/drm/amd/display/dc/inc/core_status.h
index 714593a15590..d34b0b0eea65 100644
--- a/drivers/gpu/drm/amd/display/dc/inc/core_status.h
+++ b/drivers/gpu/drm/amd/display/dc/inc/core_status.h
@@ -51,6 +51,7 @@ enum dc_status {
DC_FAIL_CLK_BELOW_CFG_REQUIRED = 23, /*THIS IS hard_min in PPLIB*/
DC_NOT_SUPPORTED = 24,
+ DC_UNSUPPORTED_VALUE = 25,
DC_ERROR_UNEXPECTED = -1
};