]> www.infradead.org Git - users/dwmw2/linux.git/commit
drm/panel: novatek-nt35950: fix return value check in nt35950_probe()
authorYang Yingliang <yangyingliang@huawei.com>
Tue, 29 Oct 2024 12:39:57 +0000 (20:39 +0800)
committerNeil Armstrong <neil.armstrong@linaro.org>
Fri, 13 Dec 2024 09:51:39 +0000 (10:51 +0100)
commitf8fd0968eff52cf092c0d517d17507ea2f6e5ea5
tree36a8d45f4424ad6822af9649bb0ee0615375f159
parente1e1af9148dc4c866eda3fb59cd6ec3c7ea34b1d
drm/panel: novatek-nt35950: fix return value check in nt35950_probe()

mipi_dsi_device_register_full() never returns NULL pointer, it
will return ERR_PTR() when it fails, so replace the check with
IS_ERR().

Fixes: 623a3531e9cf ("drm/panel: Add driver for Novatek NT35950 DSI DriverIC panels")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20241029123957.1588-1-yangyingliang@huaweicloud.com
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20241029123957.1588-1-yangyingliang@huaweicloud.com
drivers/gpu/drm/panel/panel-novatek-nt35950.c