platform/x86: thinkpad_acpi: Use devm_platform_profile_register()
Replace platform_profile_register() with it's device managed version. Reviewed-by: Mario Limonciello <mario.limonciello@amd.com> Signed-off-by: Kurt Borja <kuurtb@gmail.com> Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca> Tested-by: Mark Pearson <mpearson-lenovo@squebb.ca> Link: https://lore.kernel.org/r/20250116002721.75592-15-kuurtb@gmail.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
This commit is contained in:
parent
c72ca29e7f
commit
31658c916f
1 changed files with 1 additions and 7 deletions
|
@ -10650,7 +10650,7 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
|
||||||
|
|
||||||
dytc_profile.dev = &tpacpi_pdev->dev;
|
dytc_profile.dev = &tpacpi_pdev->dev;
|
||||||
/* Create platform_profile structure and register */
|
/* Create platform_profile structure and register */
|
||||||
err = platform_profile_register(&dytc_profile, NULL);
|
err = devm_platform_profile_register(&dytc_profile, NULL);
|
||||||
/*
|
/*
|
||||||
* If for some reason platform_profiles aren't enabled
|
* If for some reason platform_profiles aren't enabled
|
||||||
* don't quit terminally.
|
* don't quit terminally.
|
||||||
|
@ -10668,14 +10668,8 @@ static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dytc_profile_exit(void)
|
|
||||||
{
|
|
||||||
platform_profile_remove(&dytc_profile);
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct ibm_struct dytc_profile_driver_data = {
|
static struct ibm_struct dytc_profile_driver_data = {
|
||||||
.name = "dytc-profile",
|
.name = "dytc-profile",
|
||||||
.exit = dytc_profile_exit,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
|
|
Loading…
Add table
Reference in a new issue