diff options
Diffstat (limited to 'drivers/platform/surface/surface3-wmi.c')
| -rw-r--r-- | drivers/platform/surface/surface3-wmi.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/drivers/platform/surface/surface3-wmi.c b/drivers/platform/surface/surface3-wmi.c index ca4602bcc7de..c15ed7a12784 100644 --- a/drivers/platform/surface/surface3-wmi.c +++ b/drivers/platform/surface/surface3-wmi.c @@ -226,14 +226,13 @@ static int __init s3_wmi_probe(struct platform_device *pdev)  	return error;  } -static int s3_wmi_remove(struct platform_device *device) +static void s3_wmi_remove(struct platform_device *device)  {  	/* remove the hotplug context from the acpi device */  	s3_wmi.touchscreen_adev->hp = NULL;  	/* reinstall the actual PNPC0C0D LID default handle */  	acpi_bus_scan(s3_wmi.pnp0c0d_adev->handle); -	return 0;  }  static int __maybe_unused s3_wmi_resume(struct device *dev) @@ -248,7 +247,7 @@ static struct platform_driver s3_wmi_driver = {  		.name = "surface3-wmi",  		.pm = &s3_wmi_pm,  	}, -	.remove = s3_wmi_remove, +	.remove_new = s3_wmi_remove,  };  static int __init s3_wmi_init(void) |