diff mbox series

macintosh: windfarm_pm91: Fix warning comparing pointer to 0

Message ID 1647484953-15249-1-git-send-email-baihaowen@meizu.com (mailing list archive)
State Accepted
Commit 88316944c3b3aa3ce3249c51689ef1621049df9d
Headers show
Series macintosh: windfarm_pm91: Fix warning comparing pointer to 0 | expand

Checks

Context Check Description
snowpatch_ozlabs/github-powerpc_sparse warning sparse (ppc64, ubuntu-21.04, ppc64) found 1 issues.
snowpatch_ozlabs/github-powerpc_clang success Successfully ran 7 jobs.
snowpatch_ozlabs/github-powerpc_kernel_qemu success Successfully ran 24 jobs.

Commit Message

Haowen Bai March 17, 2022, 2:42 a.m. UTC
Avoid pointer type value compared with 0 to make code clear.

Signed-off-by: Haowen Bai <baihaowen@meizu.com>
---
 drivers/macintosh/windfarm_pm91.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Ellerman Nov. 30, 2022, 9:23 a.m. UTC | #1
On Thu, 17 Mar 2022 10:42:33 +0800, Haowen Bai wrote:
> Avoid pointer type value compared with 0 to make code clear.
> 
> 

Applied to powerpc/next.

[1/1] macintosh: windfarm_pm91: Fix warning comparing pointer to 0
      https://git.kernel.org/powerpc/c/88316944c3b3aa3ce3249c51689ef1621049df9d

cheers
diff mbox series

Patch

diff --git a/drivers/macintosh/windfarm_pm91.c b/drivers/macintosh/windfarm_pm91.c
index 3f346af..568f8a2 100644
--- a/drivers/macintosh/windfarm_pm91.c
+++ b/drivers/macintosh/windfarm_pm91.c
@@ -149,7 +149,7 @@  static void wf_smu_create_cpu_fans(void)
 
 	/* First, locate the PID params in SMU SBD */
 	hdr = smu_get_sdb_partition(SMU_SDB_CPUPIDDATA_ID, NULL);
-	if (hdr == 0) {
+	if (!hdr) {
 		printk(KERN_WARNING "windfarm: CPU PID fan config not found "
 		       "max fan speed\n");
 		goto fail;