Changeset 573
- Timestamp:
- Nov 30, 2012, 12:13:55 AM (13 years ago)
- Location:
- GPL/branches/uniaud32-2.1.x
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-2.1.x
-
Property svn:mergeinfo
set to
/GPL/trunk merged eligible
-
Property svn:mergeinfo
set to
-
GPL/branches/uniaud32-2.1.x/!clean.cmd
r86 r573 1 1 @echo off 2 2 SET KEE=0 3 wmake -ms -f makefile.os2 clean 3 4 wmake -ms -f makefile.os2 DEBUG=1 clean 4 5 SET KEE=1 6 wmake -ms -f makefile.os2 clean 5 7 wmake -ms -f makefile.os2 DEBUG=1 clean 6 8 SET KEE= -
GPL/branches/uniaud32-2.1.x/alsa-kernel/core/init.c
r569 r573 607 607 EXPORT_SYMBOL(snd_card_set_id); 608 608 609 #ifdef NOT_USED 609 610 static ssize_t 610 611 card_id_show_attr(struct device *dev, … … 654 655 return count; 655 656 } 657 #endif 656 658 657 659 static struct device_attribute card_id_attrs = 658 660 __ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr); 659 661 662 #ifdef NOT_USED 660 663 static ssize_t 661 664 card_number_show_attr(struct device *dev, … … 665 668 return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1); 666 669 } 670 #endif 667 671 668 672 static struct device_attribute card_number_attrs = -
GPL/branches/uniaud32-2.1.x/alsa-kernel/core/seq/seq.c
r569 r573 79 79 MODULE_PARM_DESC(seq_default_timer_resolution, "The default timer resolution in Hz."); 80 80 81 MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR , SNDRV_MINOR_SEQUENCER);81 MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR); 82 82 MODULE_ALIAS("devname:snd/seq"); 83 83 -
GPL/branches/uniaud32-2.1.x/alsa-kernel/core/timer.c
r569 r573 54 54 MODULE_PARM_DESC(timer_tstamp_monotonic, "Use posix monotonic clock source for timestamps (default)."); 55 55 56 MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR , SNDRV_MINOR_TIMER);56 MODULE_ALIAS_CHARDEV(CONFIG_SND_MAJOR); 57 57 MODULE_ALIAS("devname:snd/timer"); 58 58 -
GPL/branches/uniaud32-2.1.x/alsa-kernel/include/sound/config.h
r569 r573 119 119 struct class_device; 120 120 struct class_device_attribute {int x; }; /* dummy */ 121 #define __ATTR(cls,perm,read,write) { NULL} /* dummy */121 #define __ATTR(cls,perm,read,write) {0 } /* dummy */ 122 122 123 123 #define min_t(type, x, y) ({ \ -
GPL/branches/uniaud32-2.1.x/alsa-kernel/pci/hda/hda_codec.h
r569 r573 1009 1009 } 1010 1010 #else 1011 #define hda_call_check_power_status(codec, nid) 01011 #define hda_call_check_power_status(codec, nid) 1012 1012 #endif 1013 1013 -
GPL/branches/uniaud32-2.1.x/alsa-kernel/pci/hda/patch_conexant.c
r569 r573 1275 1275 } 1276 1276 1277 #ifdef NOT_USED 1277 1278 if (spec->beep_amp) 1278 1279 snd_hda_attach_beep_device(codec, spec->beep_amp); 1280 #endif 1279 1281 1280 1282 return 0; … … 2094 2096 } 2095 2097 2098 #ifdef NOT_USED 2096 2099 if (spec->beep_amp) 2097 2100 snd_hda_attach_beep_device(codec, spec->beep_amp); 2101 #endif 2098 2102 2099 2103 return 0; … … 3271 3275 } 3272 3276 3277 #ifdef NOT_USED 3273 3278 if (spec->beep_amp) 3274 3279 snd_hda_attach_beep_device(codec, spec->beep_amp); 3280 #endif 3275 3281 3276 3282 return 0; … … 3873 3879 } 3874 3880 codec->patch_ops = cx_auto_patch_ops; 3881 #ifdef NOT_USED 3875 3882 if (spec->beep_amp) 3876 3883 snd_hda_attach_beep_device(codec, spec->beep_amp); 3884 #endif 3877 3885 return 0; 3878 3886 } -
GPL/branches/uniaud32-2.1.x/alsa-kernel/pci/hda/patch_realtek.c
r569 r573 11102 11102 } 11103 11103 11104 #ifdef NOT_USED 11104 11105 if (has_cdefine_beep(codec)) { 11105 11106 err = snd_hda_attach_beep_device(codec, 0x1); … … 11109 11110 } 11110 11111 } 11112 #endif 11111 11113 11112 11114 if (board_config != ALC882_AUTO) … … 15372 15374 } 15373 15375 15376 #ifdef NOT_USED 15374 15377 if (has_cdefine_beep(codec)) { 15375 15378 err = snd_hda_attach_beep_device(codec, 0x1); … … 15379 15382 } 15380 15383 } 15384 #endif 15381 15385 15382 15386 if (board_config != ALC269_AUTO) … … 19722 19726 } 19723 19727 19728 #ifdef NOT_USED 19724 19729 if (has_cdefine_beep(codec)) { 19725 19730 err = snd_hda_attach_beep_device(codec, 0x1); … … 19729 19734 } 19730 19735 } 19736 #endif 19731 19737 19732 19738 if (board_config != ALC662_AUTO) -
GPL/branches/uniaud32-2.1.x/alsa-kernel/pci/hda/patch_via.c
r569 r573 264 264 snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81, 265 265 !spec->vt1708_jack_detectect); 266 cancel_delayed_work_sync(&spec->vt1708_hp_work);266 //NOT_USED cancel_delayed_work_sync(&spec->vt1708_hp_work); 267 267 } 268 268 -
GPL/branches/uniaud32-2.1.x/drv32/makefile.os2
r455 r573 61 61 FILE5 = idc.obj dispatch.obj 62 62 FILE6 = rmhelp.obj irq.obj util.obj 63 FILE7 = impdos.lib 63 FILE7 = impdos.lib 64 64 !if "$(KEE)" == "1" 65 65 FILE8 = impkee.lib … … 69 69 FILES = $(FILEFIRST) $(FILE0) $(FILE1) $(FILE2) $(FILE3) $(FILE4) $(FILE5) $(FILE6) $(FILE7) $(FILE8) $(FILE9) $(FILE10) 70 70 71 LIBS = $(ALSA_LIB)\linuxlib.lib $(ALSA_LIB)\core.lib $(ALSA_LIB)\drivers.lib $(ALSA_LIB)\ac97.lib $(ALSA_LIB)\pci.lib $(ALSA_LIB)\ca0106.lib $(ALSA_LIB)\hda.lib $(ALSA_LIB)\sequencer.lib $(ALSA_LIB)\opl3.lib $(ALSA_LIB)\mpu401.lib $(ALSA_LIB)\synth.lib $(ALSA_LIB)\cs46xx.lib $(ALSA_LIB)\cs5535audio.lib $(ALSA_LIB)\emu10k1.lib $(ALSA_LIB)\ymfpci.lib $(ALSA_LIB)\ali5451.lib $(ALSA_LIB)\trident.lib $(ALSA_LIB)\nm256.lib $(ALSA_LIB)\sb.lib $(ALSA_LIB)\core_oss.lib 71 LIBS = $(ALSA_LIB)\linuxlib.lib $(ALSA_LIB)\core.lib $(ALSA_LIB)\drivers.lib $(ALSA_LIB)\ac97.lib $(ALSA_LIB)\pci.lib $(ALSA_LIB)\ca0106.lib $(ALSA_LIB)\hda.lib $(ALSA_LIB)\sequencer.lib $(ALSA_LIB)\opl3.lib $(ALSA_LIB)\mpu401.lib $(ALSA_LIB)\synth.lib $(ALSA_LIB)\cs46xx.lib $(ALSA_LIB)\cs5535audio.lib $(ALSA_LIB)\emu10k1.lib $(ALSA_LIB)\ymfpci.lib $(ALSA_LIB)\ali5451.lib $(ALSA_LIB)\trident.lib $(ALSA_LIB)\nm256.lib $(ALSA_LIB)\sb.lib $(ALSA_LIB)\core_oss.lib 72 72 WMAPNAME = $(OBJDIR)\$(TARGET).wmap 73 # $(ALSA_LIB)\au88xx.lib 73 # $(ALSA_LIB)\au88xx.lib 74 74 #=================================================================== 75 75 # … … 87 87 @%write $^@ option alignment=16 88 88 @%write $^@ option map=$(WMAPNAME) 89 !if "$(ACPI)" == "1" 90 @%write $^@ option description '$(%BUILDLEVEL) (ACPI)' 89 !if "$(ACPI)" == "1" 90 @%write $^@ option description '$(%BUILDLEVEL) (ACPI)' 91 91 !else if "$(KEE)" == "1" !else if "$(KEE)" == "1" 92 92 @%write $^@ option description '$(%BUILDLEVEL) (KEE)' … … 97 97 @for %f in ($(FILES)) do @%append $^@ file $(OBJDIR)\%f 98 98 @for %f in ($(LIBS)) do @%append $^@ library %f 99 !if "$(ACPI)" == "1" 99 !if "$(ACPI)" == "1" 100 100 @%write $^@ $(ACPI_LIB)\acpidrv.lib 101 101 !endif … … 108 108 @for %f in ($(FILES)) do @%append $^@ $(OBJDIR)\%f 109 109 @for %f in ($(LIBS)) do @%append $^@ %f 110 !if "$(ACPI)" == "1" 110 !if "$(ACPI)" == "1" 111 111 @%write $^@ $(ACPI_LIB)\acpidrv.lib 112 112 !endif … … 117 117 118 118 $(OBJDIR)\$(TARGET).sys: $(LNKFILE) $(FILES) $(LIBS) 119 !if "$(ACPI)" == "1" 120 @%write $(DEFFILE) description '$(%BUILDLEVEL) (ACPI)' 121 !else if "$(KEE)" == "1" 119 !if "$(ACPI)" == "1" 120 @%write $(DEFFILE) description '$(%BUILDLEVEL) (ACPI)' 121 !else if "$(KEE)" == "1" 122 122 @%write $(DEFFILE) description '$(%BUILDLEVEL) (KEE)' 123 123 !else … … 128 128 129 129 copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN) 130 131 !if "$(ACPI)" == "1" 132 copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN_)\$(TARGET)acpi.sys 133 !else if "$(KEE)" == "1" 130 131 !if "$(ACPI)" == "1" 132 copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN_)\$(TARGET)acpi.sys 133 !else if "$(KEE)" == "1" 134 134 copy $(OBJDIR)\$(TARGET).sys $(ALSA_BIN_)\$(TARGET)kee.sys 135 135 !else … … 151 151 -rm *.obj *.lnk *.lrf *.def *.sys *.sym *.lst *.map *.wmap *.lib 152 152 @cd ..\.. 153 -@rm $(ALSA_BIN_)\$(TARGET)*.sys 154 -@rm $(ALSA_BIN)\$(TARGET).sy* 155 -@rm $(ALSA_LIB)\*.lib 153 -@rm $(ALSA_BIN_)\$(TARGET)*.sys 154 -@rm $(ALSA_BIN)\$(TARGET).sy* 155 -@rm $(ALSA_LIB)\*.lib -
GPL/branches/uniaud32-2.1.x/lib32/irq.c
r552 r573 83 83 84 84 if ( pSlot ) { 85 hRes = NULL;85 hRes = 0; 86 86 if (RMRequestIRQ(irq, (ulSharedFlag & SA_SHIRQ) != 0, &hRes) == FALSE) { 87 87 rprintf(("RMRequestIRQ failed for irq %d", irq)); … … 129 129 pSlot->irqNo = 0; 130 130 RMDeallocateIRQ(pSlot->hRes); 131 pSlot->hRes = NULL;131 pSlot->hRes = 0; 132 132 // pSlot->fEOI = 0; 133 133 } -
GPL/branches/uniaud32-2.1.x/uniaud.inc
r570 r573 7 7 # BUILDVERSION must be 3 parts, and only numbers like 5.44.108 8 8 # It is best that 2'nd number is always 2 digits, eg at least 10 9 BUILDVERSION = 2. 1.49 BUILDVERSION = 2.2.1 10 10 11 11 # Fixpack version … … 13 13 # ex RC3 GA FIXPACK2 beta_47 14 14 # Comment out to avoid a fixpack line in bldlevel 15 FIXPACK = BETA SVN5 6515 FIXPACK = BETA SVN573 16 16 17 17 # ALSA BUILD VERSION
Note:
See TracChangeset
for help on using the changeset viewer.