phy: mediatek: Fix missing check in mtk_mipi_tx_probe
authorMiaoqian Lin <linmq006@gmail.com>
Fri, 24 Dec 2021 08:21:03 +0000 (08:21 +0000)
committerVinod Koul <vkoul@kernel.org>
Mon, 27 Dec 2021 10:28:03 +0000 (15:58 +0530)
The of_device_get_match_data() function may return NULL.
Add check to prevent potential null dereference.

Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://lore.kernel.org/r/20211224082103.7658-1-linmq006@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/mediatek/phy-mtk-mipi-dsi.c

index 28ad9403c44143a808503efe94f5e6056377d890..67b005d5b9e350e42143704b467a47ab52c84761 100644 (file)
@@ -146,6 +146,8 @@ static int mtk_mipi_tx_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        mipi_tx->driver_data = of_device_get_match_data(dev);
+       if (!mipi_tx->driver_data)
+               return -ENODEV;
 
        mipi_tx->regs = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(mipi_tx->regs))