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

Commit 001d1953 authored by Alexander Shiyan's avatar Alexander Shiyan Committed by Greg Kroah-Hartman
Browse files

w1: mxc_w1: Check the clk_prepare_enable() return value

parent 71531f55
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ static int mxc_w1_probe(struct platform_device *pdev)
	unsigned long clkrate;
	struct resource *res;
	unsigned int clkdiv;
	int err = 0;
	int err;

	mdev = devm_kzalloc(&pdev->dev, sizeof(struct mxc_w1_device),
			    GFP_KERNEL);
@@ -135,20 +135,23 @@ static int mxc_w1_probe(struct platform_device *pdev)
	if (IS_ERR(mdev->regs))
		return PTR_ERR(mdev->regs);

	clk_prepare_enable(mdev->clk);
	err = clk_prepare_enable(mdev->clk);
	if (err)
		return err;

	__raw_writeb(clkdiv - 1, mdev->regs + MXC_W1_TIME_DIVIDER);

	mdev->bus_master.data = mdev;
	mdev->bus_master.reset_bus = mxc_w1_ds2_reset_bus;
	mdev->bus_master.touch_bit = mxc_w1_ds2_touch_bit;

	err = w1_add_master_device(&mdev->bus_master);
	platform_set_drvdata(pdev, mdev);

	err = w1_add_master_device(&mdev->bus_master);
	if (err)
		return err;
		clk_disable_unprepare(mdev->clk);

	platform_set_drvdata(pdev, mdev);
	return 0;
	return err;
}

/*