amdgpu/dc: drop dml_util_is_420

This is unused code.

Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Dave Airlie 2017-09-28 10:55:25 +10:00 committed by Alex Deucher
parent 3e8c3108da
commit e5bcf3d83e
2 changed files with 0 additions and 34 deletions

View File

@ -59,36 +59,3 @@ unsigned int dml_round_to_multiple(
else else
return (num - remainder); return (num - remainder);
} }
bool dml_util_is_420(enum source_format_class sorce_format)
{
bool val = false;
switch (sorce_format) {
case dm_444_16:
val = false;
break;
case dm_444_32:
val = false;
break;
case dm_444_64:
val = false;
break;
case dm_420_8:
val = true;
break;
case dm_420_10:
val = true;
break;
case dm_422_8:
val = false;
break;
case dm_422_10:
val = false;
break;
default:
BREAK_TO_DEBUGGER();
}
return val;
}

View File

@ -32,7 +32,6 @@
#define DTRACE(str, ...) dm_logger_write(mode_lib->logger, LOG_DML, str, ##__VA_ARGS__); #define DTRACE(str, ...) dm_logger_write(mode_lib->logger, LOG_DML, str, ##__VA_ARGS__);
bool dml_util_is_420(enum source_format_class sorce_format);
double dml_round(double a); double dml_round(double a);
unsigned int dml_round_to_multiple( unsigned int dml_round_to_multiple(
unsigned int num, unsigned int multiple, bool up); unsigned int num, unsigned int multiple, bool up);