aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pcmcia/pdaudiocf/pdaudiocf.c
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2006-03-01 18:02:33 -0500
committerDominik Brodowski <linux@dominikbrodowski.net>2006-03-31 10:15:52 -0500
commit8661bb5b4af1849c1f5a4e80c4e275fd13c155d6 (patch)
treead99d85ea8d6f5c4c99b93f869bfd412994fb4ee /sound/pcmcia/pdaudiocf/pdaudiocf.c
parent50db3fdbbc98260fb538c1cc3f8cc597ba7bffe7 (diff)
[PATCH] pcmcia: default suspend and resume handling
In all but one case, the suspend and resume functions of PCMCIA drivers contain mostly of calls to pcmcia_release_configuration() and pcmcia_request_configuration(). Therefore, move this code out of the drivers and into the core. Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'sound/pcmcia/pdaudiocf/pdaudiocf.c')
-rw-r--r--sound/pcmcia/pdaudiocf/pdaudiocf.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/sound/pcmcia/pdaudiocf/pdaudiocf.c b/sound/pcmcia/pdaudiocf/pdaudiocf.c
index 80c53553b815..31f4bdc46ce6 100644
--- a/sound/pcmcia/pdaudiocf/pdaudiocf.c
+++ b/sound/pcmcia/pdaudiocf/pdaudiocf.c
@@ -284,16 +284,11 @@ static int pdacf_suspend(struct pcmcia_device *dev)
284 struct snd_pdacf *chip = link->priv; 284 struct snd_pdacf *chip = link->priv;
285 285
286 snd_printdd(KERN_DEBUG "SUSPEND\n"); 286 snd_printdd(KERN_DEBUG "SUSPEND\n");
287 link->state |= DEV_SUSPEND;
288 if (chip) { 287 if (chip) {
289 snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n"); 288 snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n");
290 snd_pdacf_suspend(chip, PMSG_SUSPEND); 289 snd_pdacf_suspend(chip, PMSG_SUSPEND);
291 } 290 }
292 291
293 snd_printdd(KERN_DEBUG "RESET_PHYSICAL\n");
294 if (link->state & DEV_CONFIG)
295 pcmcia_release_configuration(link->handle);
296
297 return 0; 292 return 0;
298} 293}
299 294
@@ -303,12 +298,7 @@ static int pdacf_resume(struct pcmcia_device *dev)
303 struct snd_pdacf *chip = link->priv; 298 struct snd_pdacf *chip = link->priv;
304 299
305 snd_printdd(KERN_DEBUG "RESUME\n"); 300 snd_printdd(KERN_DEBUG "RESUME\n");
306 link->state &= ~DEV_SUSPEND;
307
308 snd_printdd(KERN_DEBUG "CARD_RESET\n");
309 if (DEV_OK(link)) { 301 if (DEV_OK(link)) {
310 snd_printdd(KERN_DEBUG "requestconfig...\n");
311 pcmcia_request_configuration(link->handle, &link->conf);
312 if (chip) { 302 if (chip) {
313 snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n"); 303 snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n");
314 snd_pdacf_resume(chip); 304 snd_pdacf_resume(chip);