aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/phy/phy-sun4i-usb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/phy/phy-sun4i-usb.c b/drivers/phy/phy-sun4i-usb.c
index 115d8d5190d5..7a4ea552f621 100644
--- a/drivers/phy/phy-sun4i-usb.c
+++ b/drivers/phy/phy-sun4i-usb.c
@@ -22,6 +22,7 @@
22 */ 22 */
23 23
24#include <linux/clk.h> 24#include <linux/clk.h>
25#include <linux/err.h>
25#include <linux/io.h> 26#include <linux/io.h>
26#include <linux/kernel.h> 27#include <linux/kernel.h>
27#include <linux/module.h> 28#include <linux/module.h>
@@ -306,10 +307,8 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
306 307
307 dev_set_drvdata(dev, data); 308 dev_set_drvdata(dev, data);
308 phy_provider = devm_of_phy_provider_register(dev, sun4i_usb_phy_xlate); 309 phy_provider = devm_of_phy_provider_register(dev, sun4i_usb_phy_xlate);
309 if (IS_ERR(phy_provider))
310 return PTR_ERR(phy_provider);
311 310
312 return 0; 311 return PTR_ERR_OR_ZERO(phy_provider);
313} 312}
314 313
315static const struct of_device_id sun4i_usb_phy_of_match[] = { 314static const struct of_device_id sun4i_usb_phy_of_match[] = {