diff options
| author | Mark Brown <broonie@kernel.org> | 2024-10-11 18:23:18 +0300 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2024-10-11 18:23:18 +0300 |
| commit | 7af40717c29d8c5525e015669b1e64e2e325292d (patch) | |
| tree | c8a42e117cf304be3ffd687963a0fa2f11bd9b9e /include | |
| parent | f5a0ea8936a640d8229d5219515141fc496ec5d8 (diff) | |
| parent | e0941775e6bdcf45e6e20b7ff3bb87dbb7d92fbb (diff) | |
| download | linux-7af40717c29d8c5525e015669b1e64e2e325292d.tar.xz | |
ASoC/SoundWire: Simply interrupt enabling for Intel
Merge series from Bard Liao <yung-chuan.liao@linux.intel.com>:
It is more logical to couple interrupt enabling/disabling with
power-up/down sequences.
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/hda-mlink.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sound/hda-mlink.h b/include/sound/hda-mlink.h index 9ced94686ce3..6774f4b9e5fc 100644 --- a/include/sound/hda-mlink.h +++ b/include/sound/hda-mlink.h @@ -15,6 +15,7 @@ int hda_bus_ml_init(struct hdac_bus *bus); void hda_bus_ml_free(struct hdac_bus *bus); int hdac_bus_eml_get_count(struct hdac_bus *bus, bool alt, int elid); +void hdac_bus_eml_enable_interrupt_unlocked(struct hdac_bus *bus, bool alt, int elid, bool enable); void hdac_bus_eml_enable_interrupt(struct hdac_bus *bus, bool alt, int elid, bool enable); bool hdac_bus_eml_check_interrupt(struct hdac_bus *bus, bool alt, int elid); @@ -72,6 +73,9 @@ static inline int hdac_bus_eml_get_count(struct hdac_bus *bus, bool alt, int elid) { return 0; } static inline void +hdac_bus_eml_enable_interrupt_unlocked(struct hdac_bus *bus, bool alt, int elid, bool enable) { } + +static inline void hdac_bus_eml_enable_interrupt(struct hdac_bus *bus, bool alt, int elid, bool enable) { } static inline bool |
