[PATCH v1] drm/panel: nt36523: fix parameter check in nt36523_probe()

From: Minjie Du
Date: Thu Jul 13 2023 - 05:54:37 EST


Make IS_ERR() judge the mipi_dsi_device_register_full() function return
in nt36523_probe().

Signed-off-by: Minjie Du <duminjie@xxxxxxxx>
---
drivers/gpu/drm/panel/panel-novatek-nt36523.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panel/panel-novatek-nt36523.c b/drivers/gpu/drm/panel/panel-novatek-nt36523.c
index c3befa7f2..3823255a9 100644
--- a/drivers/gpu/drm/panel/panel-novatek-nt36523.c
+++ b/drivers/gpu/drm/panel/panel-novatek-nt36523.c
@@ -1266,7 +1266,7 @@ static int nt36523_probe(struct mipi_dsi_device *dsi)
return dev_err_probe(dev, -EPROBE_DEFER, "cannot get secondary DSI host\n");

pinfo->dsi[1] = mipi_dsi_device_register_full(dsi1_host, info);
- if (!pinfo->dsi[1]) {
+ if (IS_ERR(pinfo->dsi[1])) {
dev_err(dev, "cannot get secondary DSI device\n");
return -ENODEV;
}
--
2.39.0