浏览代码

usb: phy: phy-keystone: Simplify return statement

Replace redundant variable use in return statement.

Signed-off-by: Saurabh Karajgaonkar <skarajga@visteon.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Saurabh Karajgaonkar 10 年之前
父节点
当前提交
c5673f5ce4
共有 1 个文件被更改,包括 1 次插入5 次删除
  1. 1 5
      drivers/usb/phy/phy-keystone.c

+ 1 - 5
drivers/usb/phy/phy-keystone.c

@@ -96,11 +96,7 @@ static int keystone_usbphy_probe(struct platform_device *pdev)
 
 	platform_set_drvdata(pdev, k_phy);
 
-	ret = usb_add_phy_dev(&k_phy->usb_phy_gen.phy);
-	if (ret)
-		return ret;
-
-	return 0;
+	return usb_add_phy_dev(&k_phy->usb_phy_gen.phy);
 }
 
 static int keystone_usbphy_remove(struct platform_device *pdev)