Commit 1684d3ba authored by Eric Huang's avatar Eric Huang Committed by Alex Deucher

drm/amd/amdgpu: change pptable output format from ASCII to binary

Reviewed-by: default avatarEdward O'Callaghan <funfunctor@folklore1984.net>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarEric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent b9a8be95
...@@ -305,7 +305,7 @@ static ssize_t amdgpu_get_pp_table(struct device *dev, ...@@ -305,7 +305,7 @@ static ssize_t amdgpu_get_pp_table(struct device *dev,
struct drm_device *ddev = dev_get_drvdata(dev); struct drm_device *ddev = dev_get_drvdata(dev);
struct amdgpu_device *adev = ddev->dev_private; struct amdgpu_device *adev = ddev->dev_private;
char *table = NULL; char *table = NULL;
int size, i; int size;
if (adev->pp_enabled) if (adev->pp_enabled)
size = amdgpu_dpm_get_pp_table(adev, &table); size = amdgpu_dpm_get_pp_table(adev, &table);
...@@ -315,10 +315,7 @@ static ssize_t amdgpu_get_pp_table(struct device *dev, ...@@ -315,10 +315,7 @@ static ssize_t amdgpu_get_pp_table(struct device *dev,
if (size >= PAGE_SIZE) if (size >= PAGE_SIZE)
size = PAGE_SIZE - 1; size = PAGE_SIZE - 1;
for (i = 0; i < size; i++) { memcpy(buf, table, size);
sprintf(buf + i, "%02x", table[i]);
}
sprintf(buf + i, "\n");
return size; return size;
} }
......
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