Commit 8b2ae145 authored by Alex Deucher's avatar Alex Deucher

drm/amd/powerplay/smu11: remove smu_update_table_with_arg

Nothing was using it.  Just replace with smu_update_table
which is what everything was using via a wrapper anyway.
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 22c9c6ca
......@@ -127,19 +127,17 @@ int smu_common_read_sensor(struct smu_context *smu, enum amd_pp_sensors sensor,
return ret;
}
int smu_update_table_with_arg(struct smu_context *smu, uint16_t table_id, uint16_t exarg,
int smu_update_table(struct smu_context *smu, uint32_t table_index,
void *table_data, bool drv2smu)
{
struct smu_table_context *smu_table = &smu->smu_table;
struct smu_table *table = NULL;
int ret = 0;
uint32_t table_index;
int table_id = table_index & 0xffff;
if (!table_data || table_id >= smu_table->table_count)
return -EINVAL;
table_index = (exarg << 16) | table_id;
table = &smu_table->tables[table_id];
if (drv2smu)
......
......@@ -871,10 +871,8 @@ extern int smu_feature_is_supported(struct smu_context *smu,
extern int smu_feature_set_supported(struct smu_context *smu,
enum smu_feature_mask mask, bool enable);
int smu_update_table_with_arg(struct smu_context *smu, uint16_t table_id, uint16_t exarg,
int smu_update_table(struct smu_context *smu, uint32_t table_index,
void *table_data, bool drv2smu);
#define smu_update_table(smu, table_id, table_data, drv2smu) \
smu_update_table_with_arg((smu), (table_id), 0, (table_data), (drv2smu))
bool is_support_sw_smu(struct amdgpu_device *adev);
int smu_reset(struct smu_context *smu);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment