mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
drm/amd/pm: Clean up errors in smu10_hwmgr.c
Fix the following errors reported by checkpatch: ERROR: spaces required around that '=' (ctx:VxW) ERROR: space required after that ',' (ctx:VxV) Signed-off-by: Ran Sun <sunran001@208suo.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
16d122338b
commit
4a3026b21f
|
|
@ -430,37 +430,37 @@ static int smu10_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
|
|||
}
|
||||
|
||||
/* temporary hardcoded clock voltage breakdown tables */
|
||||
static const DpmClock_t VddDcfClk[]= {
|
||||
static const DpmClock_t VddDcfClk[] = {
|
||||
{ 300, 2600},
|
||||
{ 600, 3200},
|
||||
{ 600, 3600},
|
||||
};
|
||||
|
||||
static const DpmClock_t VddSocClk[]= {
|
||||
static const DpmClock_t VddSocClk[] = {
|
||||
{ 478, 2600},
|
||||
{ 722, 3200},
|
||||
{ 722, 3600},
|
||||
};
|
||||
|
||||
static const DpmClock_t VddFClk[]= {
|
||||
static const DpmClock_t VddFClk[] = {
|
||||
{ 400, 2600},
|
||||
{1200, 3200},
|
||||
{1200, 3600},
|
||||
};
|
||||
|
||||
static const DpmClock_t VddDispClk[]= {
|
||||
static const DpmClock_t VddDispClk[] = {
|
||||
{ 435, 2600},
|
||||
{ 661, 3200},
|
||||
{1086, 3600},
|
||||
};
|
||||
|
||||
static const DpmClock_t VddDppClk[]= {
|
||||
static const DpmClock_t VddDppClk[] = {
|
||||
{ 435, 2600},
|
||||
{ 661, 3200},
|
||||
{ 661, 3600},
|
||||
};
|
||||
|
||||
static const DpmClock_t VddPhyClk[]= {
|
||||
static const DpmClock_t VddPhyClk[] = {
|
||||
{ 540, 2600},
|
||||
{ 810, 3200},
|
||||
{ 810, 3600},
|
||||
|
|
@ -1358,7 +1358,7 @@ static int smu10_set_watermarks_for_clocks_ranges(struct pp_hwmgr *hwmgr,
|
|||
struct amdgpu_device *adev = hwmgr->adev;
|
||||
int i;
|
||||
|
||||
smu_set_watermarks_for_clocks_ranges(table,wm_with_clock_ranges);
|
||||
smu_set_watermarks_for_clocks_ranges(table, wm_with_clock_ranges);
|
||||
|
||||
if (adev->apu_flags & AMD_APU_IS_RAVEN2) {
|
||||
for (i = 0; i < NUM_WM_RANGES; i++)
|
||||
|
|
@ -1461,7 +1461,7 @@ static int smu10_get_power_profile_mode(struct pp_hwmgr *hwmgr, char *buf)
|
|||
|
||||
phm_get_sysfs_buf(&buf, &size);
|
||||
|
||||
size += sysfs_emit_at(buf, size, "%s %16s %s %s %s %s\n",title[0],
|
||||
size += sysfs_emit_at(buf, size, "%s %16s %s %s %s %s\n", title[0],
|
||||
title[1], title[2], title[3], title[4], title[5]);
|
||||
|
||||
for (i = 0; i <= PP_SMC_POWER_PROFILE_COMPUTE; i++)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user