Changeset 708


Ignore:
Timestamp:
Oct 29, 2021, 1:10:50 AM (4 years ago)
Author:
Paul Smedley
Message:

Re-enable patch_hdmi.c

Location:
GPL/branches/uniaud32-next
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-next/alsa-kernel/hda/Makefile

    r667 r708  
    1313#
    1414#===================================================================
    15 FILES = hdac_device.obj array.obj hdac_stream.obj hdac_controller.obj hdac_bus.obj hda_bus_type.obj hdac_regmap.obj
     15FILES = hdac_device.obj array.obj hdac_stream.obj hdac_controller.obj hdac_bus.obj hda_bus_type.obj hdac_regmap.obj hdmi_chmap.obj
    1616
    1717TARGET = hdac
  • GPL/branches/uniaud32-next/alsa-kernel/pci/hda/Makefile

    r688 r708  
    1313#===================================================================
    1414FILES = 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 &
    1616  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.obj
     17  patch_hdmi.obj patch_realtek.obj patch_si3054.obj patch_sigmatel.obj patch_via.obj
    1818
    1919TARGET = hda
  • GPL/branches/uniaud32-next/alsa-kernel/pci/hda/patch_hdmi.c

    r697 r708  
    2525#ifdef TARGET_OS2
    2626#include <linux/mod_devicetable.h>
     27#define wmb()
    2728#endif
    2829#include <sound/core.h>
     
    5152
    5253static bool enable_silent_stream =
     54#ifndef TARGET_OS2
    5355IS_ENABLED(CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM);
     56#else
     571
     58#endif
    5459module_param(enable_silent_stream, bool, 0644);
    5560MODULE_PARM_DESC(enable_silent_stream, "Enable Silent Stream for HDMI devices");
     
    19501955        SND_PCI_QUIRK(0x1462, 0xec94, "MS-7C94", 1),
    19511956        SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", 1),
    1952         {}
     1957        {0}
    19531958};
    19541959
     
    26642669         * the state will be updated at resume
    26652670         */
     2671#ifndef TARGET_OS2
    26662672        if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND)
    26672673                return;
     2674#endif
    26682675        /* ditto during suspend/resume process itself */
    26692676        if (snd_hdac_is_in_pm(&codec->core))
     
    28502857         * the state will be updated at resume
    28512858         */
     2859#ifndef TARGET_OS2
    28522860        if (codec->core.dev.power.power_state.event == PM_EVENT_SUSPEND)
    28532861                return;
     2862#endif
    28542863        /* ditto during suspend/resume process itself */
    28552864        if (snd_hdac_is_in_pm(&codec->core))
  • GPL/branches/uniaud32-next/include/linux/bitops.h

    r660 r708  
    198198}
    199199
     200static inline unsigned long hweight_long(unsigned long w)
     201{
     202        return hweight32(w);
     203}
     204
    200205#endif /* _I386_BITOPS_H */
  • GPL/branches/uniaud32-next/include/linux/pci.h

    r649 r708  
    769769                               PCI_STATUS_PARITY)
    770770
     771#define dev_is_pci(d) (true)
     772
    771773#endif /* LINUX_PCI_H */
  • GPL/branches/uniaud32-next/lib32/ossidc.c

    r688 r708  
    133133        call_module_init(cmedia_driver_init);
    134134        call_module_init(conexant_driver_init);
    135 //      call_module_init(hdmi_driver_init);
     135        call_module_init(hdmi_driver_init);
    136136        call_module_init(realtek_driver_init);
    137137        call_module_init(sigmatel_driver_init);
Note: See TracChangeset for help on using the changeset viewer.