drm/amd/display: Remove i2caux folder

[Why]
It is huge, unmaintainable, needlessly layered, and obsolete

[How]
Remove it.  All of it.  Also remove the i2caux struct in
dc_context and the code that created and destructed it

Signed-off-by: David Francis <David.Francis@amd.com>
Reviewed-by: Harry Wentland <Harry.Wentland@amd.com>
Acked-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
David Francis
2018-11-30 11:02:59 -05:00
committed by Alex Deucher
parent 1877ccf6ee
commit 077d0b6ba2
39 changed files with 4 additions and 5874 deletions

View File

@@ -76,27 +76,4 @@ union aux_config {
uint32_t raw;
};
struct i2caux;
struct i2caux *dal_i2caux_create(
struct dc_context *ctx);
bool dal_i2caux_submit_i2c_command(
struct i2caux *i2caux,
struct ddc *ddc,
struct i2c_command *cmd);
bool dal_i2caux_submit_aux_command(
struct i2caux *i2caux,
struct ddc *ddc,
struct aux_command *cmd);
void dal_i2caux_configure_aux(
struct i2caux *i2caux,
struct ddc *ddc,
union aux_config cfg);
void dal_i2caux_destroy(
struct i2caux **ptr);
#endif