| a2719f91 | 03-Oct-2023 |
Rodrigo Siqueira <[email protected]> |
drm/amd/display: Move bw_fixed from DML folder
bw_fixed does not need any FPU operation, and it is used on DCE and DCN. For this reason, this commit moves bw_fixed to the basic folder outside DML.
drm/amd/display: Move bw_fixed from DML folder
bw_fixed does not need any FPU operation, and it is used on DCE and DCN. For this reason, this commit moves bw_fixed to the basic folder outside DML.
Reviewed-by: Qingqing Zhuo <[email protected]> Signed-off-by: Rodrigo Siqueira <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
show more ...
|
| 30f2d2e4 | 11-Aug-2022 |
Tales Aparecida <[email protected]> |
drm/amd/display: fix minor codestyle problems
Fixes five checkpatch warnings:
CHECK: Please don't use multiple blank lines + +
ERROR: Macros with complex values should be enclosed in parentheses +
drm/amd/display: fix minor codestyle problems
Fixes five checkpatch warnings:
CHECK: Please don't use multiple blank lines + +
ERROR: Macros with complex values should be enclosed in parentheses +#define MAX_I64 \ + (int64_t)((1ULL << 63) - 1)
WARNING: Missing a blank line after declarations + struct bw_fixed res; + ASSERT(value < BW_FIXED_MAX_I32 && value > BW_FIXED_MIN_I32);
ERROR: that open brace { should be on the previous line + do + {
ERROR: that open brace { should be on the previous line + if (remainder >= arg2_value) + {
Signed-off-by: Tales Aparecida <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
show more ...
|
| 9696679b | 26-Mar-2022 |
Melissa Wen <[email protected]> |
drm/amd/display: remove DC_FP_* wrapper from dml folder
FPU documentation states that developers must not use DC_FP_START/END inside dml files, but use this macro to wrap calls to FPU functions in d
drm/amd/display: remove DC_FP_* wrapper from dml folder
FPU documentation states that developers must not use DC_FP_START/END inside dml files, but use this macro to wrap calls to FPU functions in dc folder (outside dml folder). Therefore, this patch removes DC_FP_* wrappers from dml folder and wraps calls for these FPU operations outside dml, as required.
Acked-by: Christian König <[email protected]> Reviewed-by: Rodrigo Siqueira <[email protected]> Signed-off-by: Melissa Wen <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
show more ...
|