]> git.karo-electronics.de Git - linux-beck.git/commitdiff
amdgpu: use NULL instead of 0 for pointer
authorArnd Bergmann <arnd@arndb.de>
Wed, 15 Jun 2016 20:15:00 +0000 (22:15 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 7 Jul 2016 18:54:43 +0000 (14:54 -0400)
In the AMD powerplay driver, a pointer is checked for validity by
comparing against an integer '0', which causes a harmless warning
when building with "make W=1":

drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/processpptables.c:1502:16: error: ordered comparison of pointer with integer zero [-Werror=extra]

This changes the code to the more conventional "if (pointer)" check.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c

index 696012c78e3ef324c5e34436c1db3eff8c1a9e00..35bc8a29b773c6378f10cf67f3f43f3998c4d604 100644 (file)
@@ -1502,7 +1502,7 @@ int get_number_of_vce_state_table_entries(
        const ATOM_PPLIB_VCE_State_Table *vce_table =
                                    get_vce_state_table(hwmgr, table);
 
-       if (vce_table > 0)
+       if (vce_table)
                return vce_table->numEntries;
 
        return 0;