Ignore:
Timestamp:
Jan 3, 2006, 11:38:26 PM (20 years ago)
Author:
vladest
Message:

Some additional notes and suspend/resume fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/alsa-kernel/pci/intel8x0.c

    r63 r64  
    24982498
    24992499    for (i = 0; i < 3; i++)
    2500         snd_ac97_suspend(chip->ac97[i]);
     2500        if (chip->ac97[i])      //Rudi: check, if codec present !!!
     2501            snd_ac97_suspend(chip->ac97[i]);
    25012502    if (chip->device_type == DEVICE_INTEL_ICH4 ||
    25022503        chip->device_type == DEVICE_INTEL_ICH5)
     
    25362537
    25372538    for (i = 0; i < 3; i++)
    2538         snd_ac97_resume(chip->ac97[i]);
     2539        if (chip->ac97[i])              //Rudi: check, if codec present !!!
     2540            snd_ac97_resume(chip->ac97[i]);
    25392541    /* resume status */
    25402542    for (i = 0; i < chip->bdbars_count; i++) {
Note: See TracChangeset for help on using the changeset viewer.