diff options
author | Saurabh Karajgaonkar <skarajga@visteon.com> | 2015-08-04 14:02:03 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-08-05 12:37:20 -0700 |
commit | a9c5d8feb9e751a7521f1a5fa0d56901824e2ad8 (patch) | |
tree | ca485b504e60ad4504ee07574a3ab0c2a99985e4 /drivers/usb/phy/phy-keystone.c | |
parent | 082155eabfabd9148cc7e81c995e2c482075ccc3 (diff) | |
download | blackbird-op-linux-a9c5d8feb9e751a7521f1a5fa0d56901824e2ad8.tar.gz blackbird-op-linux-a9c5d8feb9e751a7521f1a5fa0d56901824e2ad8.zip |
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/phy/phy-keystone.c')
-rw-r--r-- | drivers/usb/phy/phy-keystone.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/usb/phy/phy-keystone.c b/drivers/usb/phy/phy-keystone.c index e0556f7832b5..01d4e4cdbc79 100644 --- a/drivers/usb/phy/phy-keystone.c +++ b/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) |