mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 14:14:01 +08:00
drm/amdgpu/powerplay: partial revert of endian fixes
This fixes a warning on big endian. Bitfields need to be handled properly. Cc: Arnd Bergmann <arnd@arndb.de> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
fc94d32dbf
commit
649663cf63
@ -1289,9 +1289,9 @@ int atomctrl_set_ac_timing_ai(struct pp_hwmgr *hwmgr, uint32_t memory_clock,
|
|||||||
int result;
|
int result;
|
||||||
|
|
||||||
memory_clock_parameters.asDPMMCReg.ulClock.ulClockFreq =
|
memory_clock_parameters.asDPMMCReg.ulClock.ulClockFreq =
|
||||||
cpu_to_le32(memory_clock & SET_CLOCK_FREQ_MASK);
|
memory_clock & SET_CLOCK_FREQ_MASK;
|
||||||
memory_clock_parameters.asDPMMCReg.ulClock.ulComputeClockFlag =
|
memory_clock_parameters.asDPMMCReg.ulClock.ulComputeClockFlag =
|
||||||
cpu_to_le32(ADJUST_MC_SETTING_PARAM);
|
ADJUST_MC_SETTING_PARAM;
|
||||||
memory_clock_parameters.asDPMMCReg.ucMclkDPMState = level;
|
memory_clock_parameters.asDPMMCReg.ucMclkDPMState = level;
|
||||||
|
|
||||||
result = cgs_atom_exec_cmd_table
|
result = cgs_atom_exec_cmd_table
|
||||||
|
Loading…
Reference in New Issue
Block a user