diff mbox

drm/amd/powerplay: fix compare_const_fl.cocci warnings

Message ID alpine.DEB.2.10.1601051542450.2521@hadrien (mailing list archive)
State New, archived
Headers show

Commit Message

Julia Lawall Jan. 5, 2016, 2:46 p.m. UTC
X != NULL, or even !X is more normmal in the kernel.

Generated by: scripts/coccinelle/misc/compare_const_fl.cocci

CC: Jammy Zhou <Jammy.Zhou@amd.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
---

 smumgr.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

--- a/drivers/gpu/drm/amd/amdgpu/../powerplay/smumgr/smumgr.c
+++ b/drivers/gpu/drm/amd/amdgpu/../powerplay/smumgr/smumgr.c
@@ -70,7 +70,7 @@  int smum_fini(struct pp_smumgr *smumgr)

 int smum_get_argument(struct pp_smumgr *smumgr)
 {
-	if (NULL != smumgr->smumgr_funcs->get_argument)
+	if (smumgr->smumgr_funcs->get_argument != NULL)
 		return smumgr->smumgr_funcs->get_argument(smumgr);

 	return 0;
@@ -79,7 +79,7 @@  int smum_get_argument(struct pp_smumgr *
 int smum_download_powerplay_table(struct pp_smumgr *smumgr,
 								void **table)
 {
-	if (NULL != smumgr->smumgr_funcs->download_pptable_settings)
+	if (smumgr->smumgr_funcs->download_pptable_settings != NULL)
 		return smumgr->smumgr_funcs->download_pptable_settings(smumgr,
 									table);

@@ -88,7 +88,7 @@  int smum_download_powerplay_table(struct

 int smum_upload_powerplay_table(struct pp_smumgr *smumgr)
 {
-	if (NULL != smumgr->smumgr_funcs->upload_pptable_settings)
+	if (smumgr->smumgr_funcs->upload_pptable_settings != NULL)
 		return smumgr->smumgr_funcs->upload_pptable_settings(smumgr);

 	return 0;