[PATCH] ASoC: codecs: Fix error check in es8323_i2c_probe

From: Tang Bin
Date: Fri Oct 11 2024 - 03:33:00 EST


In the function es8323_i2c_probe(), devm_kzalloc() could
possibly return NULL pointer, so IS_ERR() is wrong check
in this place, thus fix it.

Fixes: b97391a604b9 ("ASoC: codecs: Add support for ES8323")
Signed-off-by: Tang Bin <tangbin@xxxxxxxxxxxxxxxxxxxx>
---
sound/soc/codecs/es8323.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/es8323.c b/sound/soc/codecs/es8323.c
index c09bd92b2..6f4fa36ea 100644
--- a/sound/soc/codecs/es8323.c
+++ b/sound/soc/codecs/es8323.c
@@ -743,7 +743,7 @@ static int es8323_i2c_probe(struct i2c_client *i2c_client)
struct device *dev = &i2c_client->dev;

es8323 = devm_kzalloc(dev, sizeof(*es8323), GFP_KERNEL);
- if (IS_ERR(es8323))
+ if (!es8323)
return -ENOMEM;

i2c_set_clientdata(i2c_client, es8323);
--
2.33.0