* [PATCH linux-next] macintosh/windfarm: fix comparing pointer to 0
@ 2022-09-18 15:50 cgel.zte
2022-09-18 17:45 ` Arnd Bergmann
0 siblings, 1 reply; 2+ messages in thread
From: cgel.zte @ 2022-09-18 15:50 UTC (permalink / raw)
To: benh; +Cc: Zeal Robot, linuxppc-dev, Xu Panda
From: Xu Panda <xu.panda@zte.com.cn>
Comparing pointer whith NULL instead of comparing pointer to 0.
Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Xu Panda <xu.panda@zte.com.cn>
---
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 36312f163aac..82dcd35f439a 100644
--- a/drivers/macintosh/windfarm_pm121.c
+++ b/drivers/macintosh/windfarm_pm121.c
@@ -651,7 +651,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;
}
@@ -970,7 +970,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;
--
2.15.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH linux-next] macintosh/windfarm: fix comparing pointer to 0
2022-09-18 15:50 [PATCH linux-next] macintosh/windfarm: fix comparing pointer to 0 cgel.zte
@ 2022-09-18 17:45 ` Arnd Bergmann
0 siblings, 0 replies; 2+ messages in thread
From: Arnd Bergmann @ 2022-09-18 17:45 UTC (permalink / raw)
To: cgel.zte, benh; +Cc: Xu Panda, Zeal Robot, linuxppc-dev
On Sun, Sep 18, 2022, at 5:50 PM, cgel.zte@gmail.com wrote:
> @@ -970,7 +970,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];
The more common way of writing this in the kernel is
"if (hdr)".
Arnd
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-09-18 17:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-18 15:50 [PATCH linux-next] macintosh/windfarm: fix comparing pointer to 0 cgel.zte
2022-09-18 17:45 ` Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox