Hi again, found the code, please ignore my previous mail. 13. Dezember 2022 17:24, "Uwe Kleine-König" <u.kleine-koenig@xxxxxxxxxxxxxx> schrieb: > A remove callback just returning 0 is equivalent to no remove callback > at all. So drop the useless function. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> Acked-by: Peter Kaestle <peter@xxxxxxxx> > --- > drivers/platform/x86/acerhdf.c | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/drivers/platform/x86/acerhdf.c b/drivers/platform/x86/acerhdf.c > index d2c0fc38c201..ed49393d22ed 100644 > --- a/drivers/platform/x86/acerhdf.c > +++ b/drivers/platform/x86/acerhdf.c > @@ -565,11 +565,6 @@ static int acerhdf_probe(struct platform_device *device) > return 0; > } > > -static int acerhdf_remove(struct platform_device *device) > -{ > - return 0; > -} > - > static const struct dev_pm_ops acerhdf_pm_ops = { > .suspend = acerhdf_suspend, > .freeze = acerhdf_suspend, > @@ -581,7 +576,6 @@ static struct platform_driver acerhdf_driver = { > .pm = &acerhdf_pm_ops, > }, > .probe = acerhdf_probe, > - .remove = acerhdf_remove, > }; > > /* check hardware */ > -- > 2.38.1