Commit b462d0b9 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: atiixp: 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: default avatarTakashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20240207155140.18238-7-tiwai@suse.deSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 8cd4a3b2
...@@ -520,7 +520,6 @@ static int snd_atiixp_aclink_reset(struct atiixp *chip) ...@@ -520,7 +520,6 @@ static int snd_atiixp_aclink_reset(struct atiixp *chip)
return 0; return 0;
} }
#ifdef CONFIG_PM_SLEEP
static int snd_atiixp_aclink_down(struct atiixp *chip) static int snd_atiixp_aclink_down(struct atiixp *chip)
{ {
// if (atiixp_read(chip, MODEM_MIRROR) & 0x1) /* modem running, too? */ // if (atiixp_read(chip, MODEM_MIRROR) & 0x1) /* modem running, too? */
...@@ -530,7 +529,6 @@ static int snd_atiixp_aclink_down(struct atiixp *chip) ...@@ -530,7 +529,6 @@ static int snd_atiixp_aclink_down(struct atiixp *chip)
ATI_REG_CMD_POWERDOWN); ATI_REG_CMD_POWERDOWN);
return 0; return 0;
} }
#endif
/* /*
* auto-detection of codecs * auto-detection of codecs
...@@ -1454,7 +1452,6 @@ static int snd_atiixp_mixer_new(struct atiixp *chip, int clock, ...@@ -1454,7 +1452,6 @@ static int snd_atiixp_mixer_new(struct atiixp *chip, int clock,
} }
#ifdef CONFIG_PM_SLEEP
/* /*
* power management * power management
*/ */
...@@ -1499,12 +1496,7 @@ static int snd_atiixp_resume(struct device *dev) ...@@ -1499,12 +1496,7 @@ static int snd_atiixp_resume(struct device *dev)
return 0; return 0;
} }
static SIMPLE_DEV_PM_OPS(snd_atiixp_pm, snd_atiixp_suspend, snd_atiixp_resume); static DEFINE_SIMPLE_DEV_PM_OPS(snd_atiixp_pm, snd_atiixp_suspend, snd_atiixp_resume);
#define SND_ATIIXP_PM_OPS &snd_atiixp_pm
#else
#define SND_ATIIXP_PM_OPS NULL
#endif /* CONFIG_PM_SLEEP */
/* /*
* proc interface for register dump * proc interface for register dump
...@@ -1634,7 +1626,7 @@ static struct pci_driver atiixp_driver = { ...@@ -1634,7 +1626,7 @@ static struct pci_driver atiixp_driver = {
.id_table = snd_atiixp_ids, .id_table = snd_atiixp_ids,
.probe = snd_atiixp_probe, .probe = snd_atiixp_probe,
.driver = { .driver = {
.pm = SND_ATIIXP_PM_OPS, .pm = &snd_atiixp_pm,
}, },
}; };
......
...@@ -496,7 +496,6 @@ static int snd_atiixp_aclink_reset(struct atiixp_modem *chip) ...@@ -496,7 +496,6 @@ static int snd_atiixp_aclink_reset(struct atiixp_modem *chip)
return 0; return 0;
} }
#ifdef CONFIG_PM_SLEEP
static int snd_atiixp_aclink_down(struct atiixp_modem *chip) static int snd_atiixp_aclink_down(struct atiixp_modem *chip)
{ {
// if (atiixp_read(chip, MODEM_MIRROR) & 0x1) /* modem running, too? */ // if (atiixp_read(chip, MODEM_MIRROR) & 0x1) /* modem running, too? */
...@@ -506,7 +505,6 @@ static int snd_atiixp_aclink_down(struct atiixp_modem *chip) ...@@ -506,7 +505,6 @@ static int snd_atiixp_aclink_down(struct atiixp_modem *chip)
ATI_REG_CMD_POWERDOWN); ATI_REG_CMD_POWERDOWN);
return 0; return 0;
} }
#endif
/* /*
* auto-detection of codecs * auto-detection of codecs
...@@ -1094,7 +1092,6 @@ static int snd_atiixp_mixer_new(struct atiixp_modem *chip, int clock) ...@@ -1094,7 +1092,6 @@ static int snd_atiixp_mixer_new(struct atiixp_modem *chip, int clock)
} }
#ifdef CONFIG_PM_SLEEP
/* /*
* power management * power management
*/ */
...@@ -1128,11 +1125,7 @@ static int snd_atiixp_resume(struct device *dev) ...@@ -1128,11 +1125,7 @@ static int snd_atiixp_resume(struct device *dev)
return 0; return 0;
} }
static SIMPLE_DEV_PM_OPS(snd_atiixp_pm, snd_atiixp_suspend, snd_atiixp_resume); static DEFINE_SIMPLE_DEV_PM_OPS(snd_atiixp_pm, snd_atiixp_suspend, snd_atiixp_resume);
#define SND_ATIIXP_PM_OPS &snd_atiixp_pm
#else
#define SND_ATIIXP_PM_OPS NULL
#endif /* CONFIG_PM_SLEEP */
/* /*
* proc interface for register dump * proc interface for register dump
...@@ -1258,7 +1251,7 @@ static struct pci_driver atiixp_modem_driver = { ...@@ -1258,7 +1251,7 @@ static struct pci_driver atiixp_modem_driver = {
.id_table = snd_atiixp_ids, .id_table = snd_atiixp_ids,
.probe = snd_atiixp_probe, .probe = snd_atiixp_probe,
.driver = { .driver = {
.pm = SND_ATIIXP_PM_OPS, .pm = &snd_atiixp_pm,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment