Changeset 777 for GPL/trunk/alsa-kernel/pci/intel8x0.c
- Timestamp:
- Apr 21, 2025, 7:17:25 PM (5 months ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-exp merged: 766-767,770-771,773-774
- Property svn:mergeinfo changed
-
GPL/trunk/alsa-kernel/pci/intel8x0.c
r717 r777 707 707 step = 0; 708 708 } else if (civ == ichdev->civ) { 709 // snd_printd("civ same %d\n", civ);710 709 step = 1; 711 710 ichdev->civ++; … … 715 714 if (step < 0) 716 715 step += ICH_REG_LVI_MASK + 1; 717 // if (step != 1)718 // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);719 716 ichdev->civ = civ; 720 717 } … … 2561 2558 } 2562 2559 2563 #ifdef CONFIG_PM_SLEEP2564 2560 /* 2565 2561 * power management … … 2634 2630 } 2635 2631 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 */ 2632 static DEFINE_SIMPLE_DEV_PM_OPS(intel8x0_pm, intel8x0_suspend, intel8x0_resume); 2641 2633 2642 2634 #define INTEL8X0_TESTBUF_SIZE 32768 /* enough large for one shot */ … … 3224 3216 .probe = snd_intel8x0_probe, 3225 3217 .driver = { 3226 .pm = INTEL8X0_PM_OPS,3218 .pm = &intel8x0_pm, 3227 3219 }, 3228 3220 };
Note:
See TracChangeset
for help on using the changeset viewer.