[PATCH 1/9] usb: phy: phy-mxs-usb: Simplify return statement

From: Karajgaonkar, Saurabh (S.)
Date: Tue Aug 04 2015 - 05:24:13 EST


From: Saurabh Karajgaonkar <skarajga@xxxxxxxxxxx>

Replace redundant variable use in return statement.

Signed-off-by: Saurabh Karajgaonkar <skarajga@xxxxxxxxxxx>
---
drivers/usb/phy/phy-mxs-usb.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c
index 3fcc048..4d863eb 100644
--- a/drivers/usb/phy/phy-mxs-usb.c
+++ b/drivers/usb/phy/phy-mxs-usb.c
@@ -506,11 +506,7 @@ static int mxs_phy_probe(struct platform_device *pdev)

device_set_wakeup_capable(&pdev->dev, true);

- ret = usb_add_phy_dev(&mxs_phy->phy);
- if (ret)
- return ret;
-
- return 0;
+ return usb_add_phy_dev(&mxs_phy->phy);
}

static int mxs_phy_remove(struct platform_device *pdev)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/