diff options
Diffstat (limited to 'drivers/usb/cdns3/cdns3-ti.c')
| -rw-r--r-- | drivers/usb/cdns3/cdns3-ti.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/cdns3/cdns3-ti.c b/drivers/usb/cdns3/cdns3-ti.c index 5685ba11480b..90e246601537 100644 --- a/drivers/usb/cdns3/cdns3-ti.c +++ b/drivers/usb/cdns3/cdns3-ti.c @@ -2,7 +2,7 @@  /**   * cdns3-ti.c - TI specific Glue layer for Cadence USB Controller   * - * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com + * Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com   */  #include <linux/bits.h> @@ -138,7 +138,7 @@ static int cdns_ti_probe(struct platform_device *pdev)  	error = pm_runtime_get_sync(dev);  	if (error < 0) {  		dev_err(dev, "pm_runtime_get_sync failed: %d\n", error); -		goto err_get; +		goto err;  	}  	/* assert RESET */ @@ -185,7 +185,6 @@ static int cdns_ti_probe(struct platform_device *pdev)  err:  	pm_runtime_put_sync(data->dev); -err_get:  	pm_runtime_disable(data->dev);  	return error;  | 
