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

Commit 7241a21a authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by Felipe Balbi
Browse files

usb: phy: rcar-gen2-usb: always use 'dev' variable in probe() method



The probe() method has the 'dev' local variable declared and used but strangely
not in all cases where it should be...

Signed-off-by: default avatarSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent eee3f15d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -177,15 +177,15 @@ static int rcar_gen2_usb_phy_probe(struct platform_device *pdev)
	struct clk *clk;
	int retval;

	pdata = dev_get_platdata(&pdev->dev);
	pdata = dev_get_platdata(dev);
	if (!pdata) {
		dev_err(dev, "No platform data\n");
		return -EINVAL;
	}

	clk = devm_clk_get(&pdev->dev, "usbhs");
	clk = devm_clk_get(dev, "usbhs");
	if (IS_ERR(clk)) {
		dev_err(&pdev->dev, "Can't get the clock\n");
		dev_err(dev, "Can't get the clock\n");
		return PTR_ERR(clk);
	}