Changeset 709
- Timestamp:
- Jan 11, 2022, 4:25:53 PM (4 years ago)
- Location:
- GPL/trunk
- Files:
-
- 8 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk
- Property svn:mergeinfo changed
/GPL/branches/uniaud32-next merged: 708
- Property svn:mergeinfo changed
-
GPL/trunk/alsa-kernel/hda/Makefile
r667 r709 13 13 # 14 14 #=================================================================== 15 FILES = hdac_device.obj array.obj hdac_stream.obj hdac_controller.obj hdac_bus.obj hda_bus_type.obj hdac_regmap.obj 15 FILES = hdac_device.obj array.obj hdac_stream.obj hdac_controller.obj hdac_bus.obj hda_bus_type.obj hdac_regmap.obj hdmi_chmap.obj 16 16 17 17 TARGET = hdac -
GPL/trunk/alsa-kernel/pci/hda/Makefile
r689 r709 13 13 #=================================================================== 14 14 FILES = hda_intel.obj hda_codec.obj hda_controller.obj hda_auto_parser.obj hda_jack.obj & 15 hda_proc.obj hda_generic.obj hda_hwdep.obj hda_sysfs.obj hda_bind.obj &15 hda_proc.obj hda_generic.obj hda_hwdep.obj hda_sysfs.obj hda_bind.obj hda_eld.obj & 16 16 patch_analog.obj patch_cmedia.obj patch_conexant.obj patch_ca0110.obj patch_ca0132.obj patch_cirrus.obj & 17 patch_ realtek.obj patch_si3054.obj patch_sigmatel.obj patch_via.obj17 patch_hdmi.obj patch_realtek.obj patch_si3054.obj patch_sigmatel.obj patch_via.obj 18 18 19 19 TARGET = hda -
GPL/trunk/alsa-kernel/pci/hda/patch_hdmi.c
r703 r709 25 25 #ifdef TARGET_OS2 26 26 #include <linux/mod_devicetable.h> 27 #define wmb() 27 28 #endif 28 29 #include <sound/core.h> … … 51 52 52 53 static bool enable_silent_stream = 54 #ifndef TARGET_OS2 53 55 IS_ENABLED(CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM); 56 #else 57 1 58 #endif 54 59 module_param(enable_silent_stream, bool, 0644); 55 60 MODULE_PARM_DESC(enable_silent_stream, "Enable Silent Stream for HDMI devices"); … … 1950 1955 SND_PCI_QUIRK(0x1462, 0xec94, "MS-7C94", 1), 1951 1956 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", 1), 1952 { }1957 {0} 1953 1958 }; 1954 1959 … … 2016 2021 * This should never happen. 2017 2022 */ 2023 #ifndef TARGET_OS2 2018 2024 if (WARN_ON(spdif == NULL)) { 2019 2025 mutex_unlock(&codec->spdif_mutex); 2020 2026 return true; 2021 2027 } 2028 #endif 2022 2029 non_pcm = !!(spdif->status & IEC958_AES0_NONAUDIO); 2023 2030 mutex_unlock(&codec->spdif_mutex); … … 2039 2046 int pin_idx; 2040 2047 struct hdmi_spec_per_pin *per_pin; 2048 #ifndef TARGET_OS2 2041 2049 struct snd_pcm_runtime *runtime = substream->runtime; 2050 #endif 2042 2051 bool non_pcm; 2043 2052 int pinctl, stripe; … … 2075 2084 /* Call sync_audio_rate to set the N/CTS/M manually if necessary */ 2076 2085 /* Todo: add DP1.2 MST audio support later */ 2086 #ifndef TARGET_OS2 2077 2087 if (codec_has_acomp(codec)) 2078 2088 snd_hdac_sync_audio_rate(&codec->core, per_pin->pin_nid, 2079 2089 per_pin->dev_id, runtime->rate); 2090 #endif 2080 2091 2081 2092 non_pcm = check_non_pcm_per_cvt(codec, cvt_nid); … … 2461 2472 if (spec->acomp_registered) { 2462 2473 snd_hdac_acomp_exit(&codec->bus->core); 2474 #ifndef TARGET_OS2 2463 2475 } else if (codec_has_acomp(codec)) { 2464 2476 snd_hdac_acomp_register_notifier(&codec->bus->core, NULL); 2477 #endif 2465 2478 } 2466 2479 codec->relaxed_resume = 0; … … 2664 2677 * the state will be updated at resume 2665 2678 */ 2679 #ifndef TARGET_OS2 2666 2680 if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND) 2667 2681 return; 2682 #endif 2668 2683 /* ditto during suspend/resume process itself */ 2669 2684 if (snd_hdac_is_in_pm(&codec->core)) … … 2850 2865 * the state will be updated at resume 2851 2866 */ 2867 #ifndef TARGET_OS2 2852 2868 if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND) 2853 2869 return; 2870 #endif 2854 2871 /* ditto during suspend/resume process itself */ 2855 2872 if (snd_hdac_is_in_pm(&codec->core)) -
GPL/trunk/include/linux/bitops.h
r679 r709 198 198 } 199 199 200 static inline unsigned long hweight_long(unsigned long w) 201 { 202 return hweight32(w); 203 } 204 200 205 #endif /* _I386_BITOPS_H */ -
GPL/trunk/include/linux/pci.h
r679 r709 769 769 PCI_STATUS_PARITY) 770 770 771 #define dev_is_pci(d) (true) 772 771 773 #endif /* LINUX_PCI_H */ -
GPL/trunk/lib32/ossidc.c
r689 r709 133 133 call_module_init(cmedia_driver_init); 134 134 call_module_init(conexant_driver_init); 135 //call_module_init(hdmi_driver_init);135 call_module_init(hdmi_driver_init); 136 136 call_module_init(realtek_driver_init); 137 137 call_module_init(sigmatel_driver_init); -
GPL/trunk/uniaud.inc
r695 r709 7 7 # BUILDVERSION must be 3 parts, and only numbers like 5.44.108 8 8 # The second and third numbers must be 2 digits 9 BUILDVERSION = 3.01.0 39 BUILDVERSION = 3.01.04 10 10 11 11 # Fixpack version
Note:
See TracChangeset
for help on using the changeset viewer.