ALSA: aaci: Replace with DEFINE_SIMPLE_DEV_PM_OPS()
Use the new DEFINE_SIMPLE_DEV_PM_OPS() instead of SIMPLE_DEV_PM_OPS() for code-simplification. We need no longer CONFIG_PM_SLEEP ifdefs. Just a cleanup, no functional changes. Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://lore.kernel.org/r/20240207155140.18238-12-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
ae69d94f80
commit
bb7e551c40
@ -737,7 +737,6 @@ static const struct snd_pcm_ops aaci_capture_ops = {
|
|||||||
/*
|
/*
|
||||||
* Power Management.
|
* Power Management.
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_PM
|
|
||||||
static int aaci_do_suspend(struct snd_card *card)
|
static int aaci_do_suspend(struct snd_card *card)
|
||||||
{
|
{
|
||||||
struct aaci *aaci = card->private_data;
|
struct aaci *aaci = card->private_data;
|
||||||
@ -763,12 +762,7 @@ static int aaci_resume(struct device *dev)
|
|||||||
return card ? aaci_do_resume(card) : 0;
|
return card ? aaci_do_resume(card) : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static SIMPLE_DEV_PM_OPS(aaci_dev_pm_ops, aaci_suspend, aaci_resume);
|
static DEFINE_SIMPLE_DEV_PM_OPS(aaci_dev_pm_ops, aaci_suspend, aaci_resume);
|
||||||
#define AACI_DEV_PM_OPS (&aaci_dev_pm_ops)
|
|
||||||
#else
|
|
||||||
#define AACI_DEV_PM_OPS NULL
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
static const struct ac97_pcm ac97_defs[] = {
|
static const struct ac97_pcm ac97_defs[] = {
|
||||||
[0] = { /* Front PCM */
|
[0] = { /* Front PCM */
|
||||||
@ -1081,7 +1075,7 @@ MODULE_DEVICE_TABLE(amba, aaci_ids);
|
|||||||
static struct amba_driver aaci_driver = {
|
static struct amba_driver aaci_driver = {
|
||||||
.drv = {
|
.drv = {
|
||||||
.name = DRIVER_NAME,
|
.name = DRIVER_NAME,
|
||||||
.pm = AACI_DEV_PM_OPS,
|
.pm = &aaci_dev_pm_ops,
|
||||||
},
|
},
|
||||||
.probe = aaci_probe,
|
.probe = aaci_probe,
|
||||||
.remove = aaci_remove,
|
.remove = aaci_remove,
|
||||||
|
Loading…
Reference in New Issue
Block a user