]> git.hungrycats.org Git - linux/commitdiff
drm/amd/powerplay: incorrectly use of the function return value
authorRex Zhu <Rex.Zhu@amd.com>
Tue, 5 Jul 2016 05:11:47 +0000 (13:11 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 Jul 2016 15:42:19 +0000 (08:42 -0700)
commit 4b2427605e5325eafb5cfc2698f517db68e41075 upstream.

'0' means true.

Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/amd/powerplay/hwmgr/tonga_processpptables.c

index b156481b50e8ee43076abf2de1fdcb8df46f3990..17766e8da0ca04e1b1eb8c5c2a8402dbd4110b3a 100644 (file)
@@ -299,7 +299,7 @@ static int init_dpm_2_parameters(
                        (((unsigned long)powerplay_table) + le16_to_cpu(powerplay_table->usPPMTableOffset));
 
                if (0 != powerplay_table->usPPMTableOffset) {
-                       if (1 == get_platform_power_management_table(hwmgr, atom_ppm_table)) {
+                       if (get_platform_power_management_table(hwmgr, atom_ppm_table) == 0) {
                                phm_cap_set(hwmgr->platform_descriptor.platformCaps,
                                        PHM_PlatformCaps_EnablePlatformPowerManagement);
                        }