diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-07-02 09:42:33 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-07-03 02:23:08 -0400 |
commit | 2cb1331d9d647643a52be770377ab67ea078fd99 (patch) | |
tree | c27989ede1f006b60bbdad0c7110e29f41bd2512 /sound | |
parent | 68cb2b559278858ef9f3a7722f95df88797c7840 (diff) |
ALSA: pdaudiocf: Remove superfluous pm_message_t argument from suspend
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pcmcia/pdaudiocf/pdaudiocf.c | 2 | ||||
-rw-r--r-- | sound/pcmcia/pdaudiocf/pdaudiocf.h | 2 | ||||
-rw-r--r-- | sound/pcmcia/pdaudiocf/pdaudiocf_core.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c index 830839a874b6..f9b5229b2723 100644 --- a/sound/pcmcia/pdaudiocf/pdaudiocf.c +++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c | |||
@@ -251,7 +251,7 @@ static int pdacf_suspend(struct pcmcia_device *link) | |||
251 | snd_printdd(KERN_DEBUG "SUSPEND\n"); | 251 | snd_printdd(KERN_DEBUG "SUSPEND\n"); |
252 | if (chip) { | 252 | if (chip) { |
253 | snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n"); | 253 | snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n"); |
254 | snd_pdacf_suspend(chip, PMSG_SUSPEND); | 254 | snd_pdacf_suspend(chip); |
255 | } | 255 | } |
256 | 256 | ||
257 | return 0; | 257 | return 0; |
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.h b/sound/pcmcia/pdaudiocf/pdaudiocf.h index 6ce9ad700290..ea41e57d7179 100644 --- a/sound/pcmcia/pdaudiocf/pdaudiocf.h +++ b/sound/pcmcia/pdaudiocf/pdaudiocf.h | |||
@@ -131,7 +131,7 @@ struct snd_pdacf *snd_pdacf_create(struct snd_card *card); | |||
131 | int snd_pdacf_ak4117_create(struct snd_pdacf *pdacf); | 131 | int snd_pdacf_ak4117_create(struct snd_pdacf *pdacf); |
132 | void snd_pdacf_powerdown(struct snd_pdacf *chip); | 132 | void snd_pdacf_powerdown(struct snd_pdacf *chip); |
133 | #ifdef CONFIG_PM | 133 | #ifdef CONFIG_PM |
134 | int snd_pdacf_suspend(struct snd_pdacf *chip, pm_message_t state); | 134 | int snd_pdacf_suspend(struct snd_pdacf *chip); |
135 | int snd_pdacf_resume(struct snd_pdacf *chip); | 135 | int snd_pdacf_resume(struct snd_pdacf *chip); |
136 | #endif | 136 | #endif |
137 | int snd_pdacf_pcm_new(struct snd_pdacf *chip); | 137 | int snd_pdacf_pcm_new(struct snd_pdacf *chip); |
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf_core.c b/sound/pcmcia/pdaudiocf/pdaudiocf_core.c index 9dce0bde5c05..ea0adfb984ad 100644 --- a/sound/pcmcia/pdaudiocf/pdaudiocf_core.c +++ b/sound/pcmcia/pdaudiocf/pdaudiocf_core.c | |||
@@ -262,7 +262,7 @@ void snd_pdacf_powerdown(struct snd_pdacf *chip) | |||
262 | 262 | ||
263 | #ifdef CONFIG_PM | 263 | #ifdef CONFIG_PM |
264 | 264 | ||
265 | int snd_pdacf_suspend(struct snd_pdacf *chip, pm_message_t state) | 265 | int snd_pdacf_suspend(struct snd_pdacf *chip) |
266 | { | 266 | { |
267 | u16 val; | 267 | u16 val; |
268 | 268 | ||