Explorar el Código

usb: phy: phy-mxs-usb: set the correct platform drvdata

We need to set mxs_phy rather as the platform drvdata so that we can get
the correct mxs_phy in mxs_phy_remove().

Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Acked-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Jisheng Zhang hace 11 años
padre
commit
97a27f7340
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      drivers/usb/phy/phy-mxs-usb.c

+ 1 - 1
drivers/usb/phy/phy-mxs-usb.c

@@ -164,7 +164,7 @@ static int mxs_phy_probe(struct platform_device *pdev)
 
 
 	mxs_phy->clk = clk;
 	mxs_phy->clk = clk;
 
 
-	platform_set_drvdata(pdev, &mxs_phy->phy);
+	platform_set_drvdata(pdev, mxs_phy);
 
 
 	ret = usb_add_phy_dev(&mxs_phy->phy);
 	ret = usb_add_phy_dev(&mxs_phy->phy);
 	if (ret)
 	if (ret)