drm/amdgpu/powerplay: partial revert of endian fixes
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 28 Jul 2016 13:46:28 +0000 (09:46 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 29 Jul 2016 18:36:46 +0000 (14:36 -0400)
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>
drivers/gpu/drm/amd/powerplay/hwmgr/ppatomctrl.c

index e2aece3..26f3e30 100644 (file)
@@ -1289,9 +1289,9 @@ int atomctrl_set_ac_timing_ai(struct pp_hwmgr *hwmgr, uint32_t memory_clock,
        int result;
 
        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 =
-               cpu_to_le32(ADJUST_MC_SETTING_PARAM);
+               ADJUST_MC_SETTING_PARAM;
        memory_clock_parameters.asDPMMCReg.ucMclkDPMState = level;
 
        result = cgs_atom_exec_cmd_table