diff options
Diffstat (limited to 'drivers/usb/renesas_usbhs/common.c')
| -rw-r--r-- | drivers/usb/renesas_usbhs/common.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c index fa34efabcccf..111b7ee152c4 100644 --- a/drivers/usb/renesas_usbhs/common.c +++ b/drivers/usb/renesas_usbhs/common.c @@ -762,7 +762,7 @@ probe_end_pipe_exit:  	return ret;  } -static int usbhs_remove(struct platform_device *pdev) +static void usbhs_remove(struct platform_device *pdev)  {  	struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev); @@ -780,8 +780,6 @@ static int usbhs_remove(struct platform_device *pdev)  	usbhs_mod_remove(priv);  	usbhs_fifo_remove(priv);  	usbhs_pipe_remove(priv); - -	return 0;  }  static __maybe_unused int usbhsc_suspend(struct device *dev) @@ -826,7 +824,7 @@ static struct platform_driver renesas_usbhs_driver = {  		.of_match_table = usbhs_of_match,  	},  	.probe		= usbhs_probe, -	.remove		= usbhs_remove, +	.remove_new	= usbhs_remove,  };  module_platform_driver(renesas_usbhs_driver);  |