Ignore:
Timestamp:
Apr 21, 2025, 7:17:25 PM (5 months ago)
Author:
David Azarewicz
Message:

Merge from uniaud32-exp branch

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/alsa-kernel/pci/intel8x0.c

    r717 r777  
    707707                step = 0;
    708708        } else if (civ == ichdev->civ) {
    709                 // snd_printd("civ same %d\n", civ);
    710709                step = 1;
    711710                ichdev->civ++;
     
    715714                if (step < 0)
    716715                        step += ICH_REG_LVI_MASK + 1;
    717                 // if (step != 1)
    718                 //      snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);
    719716                ichdev->civ = civ;
    720717        }
     
    25612558}
    25622559
    2563 #ifdef CONFIG_PM_SLEEP
    25642560/*
    25652561 * power management
     
    26342630}
    26352631
    2636 static SIMPLE_DEV_PM_OPS(intel8x0_pm, intel8x0_suspend, intel8x0_resume);
    2637 #define INTEL8X0_PM_OPS &intel8x0_pm
    2638 #else
    2639 #define INTEL8X0_PM_OPS NULL
    2640 #endif /* CONFIG_PM_SLEEP */
     2632static DEFINE_SIMPLE_DEV_PM_OPS(intel8x0_pm, intel8x0_suspend, intel8x0_resume);
    26412633
    26422634#define INTEL8X0_TESTBUF_SIZE   32768   /* enough large for one shot */
     
    32243216        .probe = snd_intel8x0_probe,
    32253217        .driver = {
    3226                 .pm = INTEL8X0_PM_OPS,
     3218                .pm = &intel8x0_pm,
    32273219        },
    32283220};
Note: See TracChangeset for help on using the changeset viewer.