Changeset 708
- Timestamp:
- Oct 29, 2021, 1:10:50 AM (4 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/alsa-kernel/hda/Makefile
r667 r708 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/branches/uniaud32-next/alsa-kernel/pci/hda/Makefile
r688 r708 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/branches/uniaud32-next/alsa-kernel/pci/hda/patch_hdmi.c
r697 r708 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 … … 2664 2669 * the state will be updated at resume 2665 2670 */ 2671 #ifndef TARGET_OS2 2666 2672 if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND) 2667 2673 return; 2674 #endif 2668 2675 /* ditto during suspend/resume process itself */ 2669 2676 if (snd_hdac_is_in_pm(&codec->core)) … … 2850 2857 * the state will be updated at resume 2851 2858 */ 2859 #ifndef TARGET_OS2 2852 2860 if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND) 2853 2861 return; 2862 #endif 2854 2863 /* ditto during suspend/resume process itself */ 2855 2864 if (snd_hdac_is_in_pm(&codec->core)) -
GPL/branches/uniaud32-next/include/linux/bitops.h
r660 r708 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/branches/uniaud32-next/include/linux/pci.h
r649 r708 769 769 PCI_STATUS_PARITY) 770 770 771 #define dev_is_pci(d) (true) 772 771 773 #endif /* LINUX_PCI_H */ -
GPL/branches/uniaud32-next/lib32/ossidc.c
r688 r708 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);
Note:
See TracChangeset
for help on using the changeset viewer.