Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c98f71d1 authored by Brian Norris's avatar Brian Norris
Browse files

mtd: fsl-quadspi: possible NULL dereference



It is theoretically possible to probe this driver without a matching
device tree, so let's guard against this.

Also, use the of_device_get_match_data() helper to make this a bit
simpler.

Coverity complained about this one.

Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Acked-by: default avatarHan xu <han.xu@freescale.com>
parent fc5adbeb
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ struct fsl_qspi {
	struct clk *clk, *clk_en;
	struct device *dev;
	struct completion c;
	struct fsl_qspi_devtype_data *devtype_data;
	const struct fsl_qspi_devtype_data *devtype_data;
	u32 nor_size;
	u32 nor_num;
	u32 clk_rate;
@@ -933,8 +933,6 @@ static int fsl_qspi_probe(struct platform_device *pdev)
	struct spi_nor *nor;
	struct mtd_info *mtd;
	int ret, i = 0;
	const struct of_device_id *of_id =
			of_match_device(fsl_qspi_dt_ids, &pdev->dev);

	q = devm_kzalloc(dev, sizeof(*q), GFP_KERNEL);
	if (!q)
@@ -945,7 +943,9 @@ static int fsl_qspi_probe(struct platform_device *pdev)
		return -ENODEV;

	q->dev = dev;
	q->devtype_data = (struct fsl_qspi_devtype_data *)of_id->data;
	q->devtype_data = of_device_get_match_data(dev);
	if (!q->devtype_data)
		return -ENODEV;
	platform_set_drvdata(pdev, q);

	/* find the resources */