diff mbox series

macintosh: windfarm: Use NULL to compare with pointer-typed value rather than 0

Message ID 20201113073343.64378-1-vulab@iscas.ac.cn (mailing list archive)
State Changes Requested
Headers show
Series macintosh: windfarm: Use NULL to compare with pointer-typed value rather than 0 | expand

Checks

Context Check Description
snowpatch_ozlabs/apply_patch success Successfully applied on branch powerpc/merge (80ecbe16c827714ce3741ed1f1d34488b903e717)
snowpatch_ozlabs/build-ppc64le success Build succeeded
snowpatch_ozlabs/build-ppc64be success Build succeeded and removed 2 sparse warnings
snowpatch_ozlabs/build-ppc64e success Build succeeded
snowpatch_ozlabs/build-pmac32 success Build succeeded
snowpatch_ozlabs/checkpatch success total: 0 errors, 0 warnings, 0 checks, 16 lines checked
snowpatch_ozlabs/needsstable success Patch has no Fixes tags

Commit Message

Xu Wang Nov. 13, 2020, 7:33 a.m. UTC
Compare pointer-typed values to NULL rather than 0.

Signed-off-by: Xu Wang <vulab@iscas.ac.cn>
---
 drivers/macintosh/windfarm_pm121.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Christophe Leroy March 18, 2022, 5:07 p.m. UTC | #1
Le 13/11/2020 à 08:33, Xu Wang a écrit :
> Compare pointer-typed values to NULL rather than 0.
> 
> Signed-off-by: Xu Wang <vulab@iscas.ac.cn>

If we are going to change that, let's do it right at once

Checkpatch says:

CHECK: Comparison to NULL could be written "!hdr"
#25: FILE: drivers/macintosh/windfarm_pm121.c:653:
+	if (hdr == NULL) {

CHECK: Comparison to NULL could be written "hdr"
#34: FILE: drivers/macintosh/windfarm_pm121.c:972:
+	if (hdr != NULL) {

total: 0 errors, 0 warnings, 2 checks, 16 lines checked



> ---
>   drivers/macintosh/windfarm_pm121.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/macintosh/windfarm_pm121.c b/drivers/macintosh/windfarm_pm121.c
> index ab467b9c31be..62826844b584 100644
> --- a/drivers/macintosh/windfarm_pm121.c
> +++ b/drivers/macintosh/windfarm_pm121.c
> @@ -650,7 +650,7 @@ static void pm121_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 == NULL) {
>   		printk(KERN_WARNING "pm121: CPU PID fan config not found.\n");
>   		goto fail;
>   	}
> @@ -969,7 +969,7 @@ static int pm121_init_pm(void)
>   	const struct smu_sdbp_header *hdr;
>   
>   	hdr = smu_get_sdb_partition(SMU_SDB_SENSORTREE_ID, NULL);
> -	if (hdr != 0) {
> +	if (hdr != NULL) {
>   		struct smu_sdbp_sensortree *st =
>   			(struct smu_sdbp_sensortree *)&hdr[1];
>   		pm121_mach_model = st->model_id;
diff mbox series

Patch

diff --git a/drivers/macintosh/windfarm_pm121.c b/drivers/macintosh/windfarm_pm121.c
index ab467b9c31be..62826844b584 100644
--- a/drivers/macintosh/windfarm_pm121.c
+++ b/drivers/macintosh/windfarm_pm121.c
@@ -650,7 +650,7 @@  static void pm121_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 == NULL) {
 		printk(KERN_WARNING "pm121: CPU PID fan config not found.\n");
 		goto fail;
 	}
@@ -969,7 +969,7 @@  static int pm121_init_pm(void)
 	const struct smu_sdbp_header *hdr;
 
 	hdr = smu_get_sdb_partition(SMU_SDB_SENSORTREE_ID, NULL);
-	if (hdr != 0) {
+	if (hdr != NULL) {
 		struct smu_sdbp_sensortree *st =
 			(struct smu_sdbp_sensortree *)&hdr[1];
 		pm121_mach_model = st->model_id;