Changeset 64


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

Some additional notes and suspend/resume fixes

Location:
GPL/trunk
Files:
2 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++) {
  • GPL/trunk/howtobuild.txt

    r63 r64  
    1 NOTE! Use OpenWatcom 1.4rc1 or later
     1NOTE! Use OpenWatcom 1.4rc1 or later. Also you need IBM's ILINK for driver
     2      linking. Possible, you can try wlink, but I never did that.
    23
    341. Run Configure.cmd
Note: See TracChangeset for help on using the changeset viewer.