Changeset 506
- Timestamp:
- Jul 11, 2010, 8:10:27 AM (15 years ago)
- Location:
- GPL/branches/uniaud32-2.1.x
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-2.1.x/lib32/misc.c
r499 r506 39 39 #include <linux/firmware.h> 40 40 #include <dbgos2.h> 41 #include <printfos2.h>42 41 43 42 struct new_utsname system_utsname = {0}; -
GPL/branches/uniaud32-2.1.x/lib32/soundmixer.c
r485 r506 516 516 GET_VOLUME_L(volume), GET_VOLUME_R(volume), lVol, rVol, pElemInfo->value.integer.max); 517 517 518 #if 1 519 ret = pHandle->file.f_op->ioctl(&pHandle->inode, &pHandle->file, SNDRV_CTL_IOCTL_ELEM_WRITE, (ULONG)pElem); 520 #else 518 521 // looking for more, then one opened streams to prevent of muting active stream 519 522 cnt = 0; … … 522 525 cnt++; 523 526 527 printk("OSS32_MixSetVolume old cnt=%X line=%x lVol=%x rVol=%x\n", cnt, line, lVol, rVol); 524 528 // if (((cnt == 1 && (lVol==0 && rVol==0)) || (lVol>0 && rVol>0)) || 525 529 if (cnt == 1 || line != OSS32_MIX_VOLUME_PCM) 526 530 { 531 printk("OSS32_MixSetVolume Ioctl\n"); 527 532 ret = pHandle->file.f_op->ioctl(&pHandle->inode, &pHandle->file, SNDRV_CTL_IOCTL_ELEM_WRITE, (ULONG)pElem); 528 533 … … 534 539 pElem->value.integer.value[0] = FALSE; //switch, not mute control (inversed) 535 540 pElem->value.integer.value[1] = FALSE; 541 printk("OSS32_MixSetVolume Ioctl mute\n"); 536 542 ret = pHandle->file.f_op->ioctl(&pHandle->inode, &pHandle->file, SNDRV_CTL_IOCTL_ELEM_WRITE, (ULONG)pElem); 537 543 } 538 544 } 545 #endif 539 546 540 547 kfree(pElem); -
GPL/branches/uniaud32-2.1.x/uniaud.inc
r504 r506 13 13 # ex RC3 GA FIXPACK2 beta_47 14 14 # Comment out to avoid a fixpack line in bldlevel 15 FIXPACK = BETA SVN r50 415 FIXPACK = BETA SVN r506 16 16 17 17 # ALSA BUILD VERSION
Note:
See TracChangeset
for help on using the changeset viewer.