Skip to content

Commit

Permalink
drm/amd/powerplay/smu11: remove smu_update_table_with_arg
Browse files Browse the repository at this point in the history
Nothing was using it.  Just replace with smu_update_table
which is what everything was using via a wrapper anyway.

Signed-off-by: Alex Deucher <[email protected]>
  • Loading branch information
alexdeucher committed Jun 21, 2019
1 parent 22c9c6c commit 8b2ae14
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 2 additions & 4 deletions drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
Original file line number Diff line number Diff line change
@@ -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)
4 changes: 1 addition & 3 deletions drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit 8b2ae14

Please sign in to comment.