From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Federico Lombardo <lombardo.federico.lf@gmail.com>,
Takashi Iwai <tiwai@suse.de>, Sasha Levin <sashal@kernel.org>,
perex@perex.cz, tiwai@suse.com, linux-sound@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Enable mute LED quirk for HP Laptop 15-dw0xxx
Date: Mon, 31 Aug 2026 09:22:22 -0400 [thread overview]
Message-ID: <20260831133314.4125787-114-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Federico Lombardo <lombardo.federico.lf@gmail.com>
[ Upstream commit b28d3d0841a6083f82dfa9fe940afcd748f2a1e2 ]
HP Laptop 15-dw0xxx with subsystem ID 103c:85f0 needs the
ALC236_FIXUP_HP_MUTE_LED_COEFBIT2 quirk to correctly disable and
enable the Audio Mute LED.
Add the missing quirk entry.
Signed-off-by: Federico Lombardo <lombardo.federico.lf@gmail.com>
Link: https://patch.msgid.link/20260702204347.187524-1-lombardo.federico.lf@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
## Phase 1: Commit Message Forensics
**Step 1.1 — Subject line**
Record: `[ALSA: hda/realtek] [enable] Enable mute LED quirk for HP
Laptop 15-dw0xxx`
**Step 1.2 — Tags**
Record:
- `Signed-off-by: Federico Lombardo <lombardo.federico.lf@gmail.com>`
(author)
- `Link: https://patch.msgid.link/20260702204347.187524-1-
lombardo.federico.lf@gmail.com`
- `Signed-off-by: Takashi Iwai <tiwai@suse.de>` (ALSA/HDA maintainer)
- No `Fixes:`, `Reported-by:`, `Tested-by:`, `Cc:
stable@vger.kernel.org`
**Step 1.3 — Body analysis**
Record: HP Laptop 15-dw0xxx with subsystem ID `103c:85f0` needs
`ALC236_FIXUP_HP_MUTE_LED_COEFBIT2` so the audio mute LED correctly
tracks mute state. Symptom: mute LED does not correctly enable/disable
with mic mute. Root cause: missing PCI SSID quirk entry in the Realtek
HDA quirk table.
**Step 1.4 — Hidden bug fix?**
Record: Not disguised — this is an explicit hardware quirk for
broken/misconfigured mute-LED behavior on a specific laptop model.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- 1 file: `sound/hda/codecs/realtek/alc269.c` (+1 line)
- Function/table: `alc269_fixup_tbl[]`
- Scope: single-file, surgical, one-line quirk addition
**Step 2.2 — Code flow change**
Record:
- Before: `103c:85f0` not in `alc269_fixup_tbl[]`;
`snd_hda_pick_fixup()` does not apply
`ALC236_FIXUP_HP_MUTE_LED_COEFBIT2` for this machine.
- After: SSID `103c:85f0` maps to `ALC236_FIXUP_HP_MUTE_LED_COEFBIT2`,
which runs `alc236_fixup_hp_mute_led_coefbit2()` at
`HDA_FIXUP_ACT_PRE_PROBE` and registers mute-LED control via
`snd_hda_gen_add_mute_led_cdev()`.
**Step 2.3 — Bug mechanism**
Record: Hardware quirk / audio codec quirk. Category (h): missing
`SND_PCI_QUIRK` entry for a laptop whose ALC236 codec needs coefficient-
bit-2 mute-LED handling.
**Step 2.4 — Fix quality**
Record: Obviously correct — identical pattern to many existing entries
(e.g. `0x84ae`, `0x86c1`, `0x8706`). Minimal risk; no new logic, only
table mapping.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Insertion point lines 6734–6735 (`0x85de` → `0x8603`) date from
merge `5d324e5159d9e` (2025-11-28, Linux 6.18 base). Gap at `0x85f0` is
present in this tree.
**Step 3.2 — Fixes: tag**
Record: N/A — no `Fixes:` tag.
**Step 3.3 — Related changes**
Record: This tree already has many similar backported mute-LED quirks:
- `3210077ed2648` — HP Laptop 15s-eq1xxx
(`ALC236_FIXUP_HP_MUTE_LED_COEFBIT2`)
- `bee43f7b9bc62` — HP Laptop 14s-dr5xxx
- `7556bd5cd8ef3` — HP Laptop 15-fd0xxx
- `a424946e00f2e` — HP Pavilion Laptop 16-ag0xxx
Standalone one-line quirk; no series dependency.
**Step 3.4 — Author context**
Record: Federico Lombardo (hardware reporter/contributor). Takashi Iwai
(maintainer) signed off. Consistent with normal ALSA quirk workflow.
**Step 3.5 — Prerequisites**
Record: `ALC236_FIXUP_HP_MUTE_LED_COEFBIT2` enum, fixup definition, and
`alc236_fixup_hp_mute_led_coefbit2()` all exist in this tree. Patch
applies standalone.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: Link in commit message could not be fetched (Anubis bot
protection). `b4 dig -c` unavailable — commit not present in this
checkout. UNVERIFIED: full review thread content.
**Step 4.2 — Reviewers**
Record: Takashi Iwai maintainer sign-off confirmed from commit message.
UNVERIFIED: full recipient list from `b4 dig -w`.
**Step 4.3 — Bug report**
Record: No external bug report or syzbot link. Hardware-specific user
report implied by author.
**Step 4.4 — Related patches**
Record: Part of ongoing HP mute-LED quirk additions; same fixup reused
across multiple HP laptops already in this tree.
**Step 4.5 — Stable list**
Record: UNVERIFIED — could not search lore due to bot protection.
Precedent in this tree: similar quirks (e.g. `a424946e00f2e`) were
explicitly backported with `Cc: stable@vger.kernel.org`.
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `alc269_fixup_tbl[]`, `alc236_fixup_hp_mute_led_coefbit2()`,
`coef_mute_led_set()`, `snd_hda_pick_fixup()`.
**Step 5.2 — Callers**
Record: `snd_hda_pick_fixup(codec, alc269_fixup_models,
alc269_fixup_tbl, alc269_fixups)` called during Realtek codec
initialization (line 8471 in `alc269.c`), i.e. at HDA codec probe on
affected hardware.
**Step 5.3 — Callees**
Record: Fixup configures `spec->mute_led_coef` (idx `0x07`, mask `1`,
on/off values) and registers LED class device via
`snd_hda_gen_add_mute_led_cdev()`. Runtime updates go through
`coef_mute_led_set()` → `alc_update_coef_led()`.
**Step 5.4 — Reachability**
Record: Triggered on boot/module load when HDA Realtek codec probes on
HP Laptop 15-dw0xxx (`103c:85f0`). Common laptop audio path; not
userspace-triggerable for exploitation, but affects all owners of this
hardware.
**Step 5.5 — Similar patterns**
Record: 18+ existing `ALC236_FIXUP_HP_MUTE_LED_COEFBIT2` entries in this
tree, including nearby `0x84ae`, `0x86c1`, `0x8706`, `0x89a0` (HP Laptop
15-dw4xxx). Same fixup, different SSIDs.
---
## Phase 6: Cross-Reference Against Local Tree
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is **Linux 6.18.44**
(`v6.18.44-1-g2736c32da98b9`). `0x85f0` is absent from
`alc269_fixup_tbl[]`; confirmed gap between `0x85de` and `0x8603`.
Prerequisite fixup infrastructure is present.
**Step 6.2 — Backport complications**
Record: Clean one-line apply between existing sorted entries. No
conflicts expected.
**Step 6.3 — Related fixes already present?**
Record: The fixup type and many sibling quirk entries are already
backported; this specific SSID is the only missing piece.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem**
Record: `sound/hda` — ALSA HDA Realtek codec driver. Criticality:
**IMPORTANT** (peripheral driver, but widely used on consumer laptops).
**Step 7.2 — Activity**
Record: Actively maintained — numerous Realtek quirk commits in this
6.18.y tree in 2026, including multiple HP mute-LED entries.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: Owners of HP Laptop 15-dw0xxx with Realtek ALC236 and SSID
`103c:85f0`. Driver-specific, hardware-specific.
**Step 8.2 — Trigger conditions**
Record: Every boot / audio subsystem init on affected hardware. Common
and deterministic for those machines. Not a security vector.
**Step 8.3 — Failure mode severity**
Record: Mute LED does not correctly reflect mic mute state (UX/hardware-
indicator bug). Severity: **LOW** — no crash, corruption, deadlock, or
security impact. Audio itself may still work; only LED sync is wrong.
**Step 8.4 — Risk vs benefit**
Record:
- Benefit: **MEDIUM** for affected HP users (correct mute-LED behavior)
- Risk: **VERY LOW** (one table line, existing fixup, proven pattern)
- Ratio: Strongly favorable; matches established stable practice for HDA
quirk additions in this tree
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence compile**
FOR backport:
- Real hardware bug on a specific HP laptop model
- One-line, obviously correct hardware quirk
- Uses existing `ALC236_FIXUP_HP_MUTE_LED_COEFBIT2` already in 6.18.44
- Maintainer (Takashi Iwai) signed off
- Identical class of fix already backported to this tree (e.g.
`3210077`, `bee43f7b`, `7556bd5`, `a424946e`)
- Fits stable exception category: audio codec hardware quirk
- Clean apply expected
AGAINST backport:
- Not a crash, security, or data-integrity issue
- Affects only one laptop model/SSID
- No `Tested-by:` or explicit stable nomination in provided message
- Mailing list discussion unverified
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** (pattern proven; maintainer
ACK; UNVERIFIED: author hardware test)
2. Fixes a real bug affecting users? **PASS** (mute LED broken on
specific hardware)
3. Important issue? **PASS** (hardware quirk exception — fixes real-
world hardware behavior; severity LOW but category is standard stable
material)
4. Small and contained? **PASS** (+1 line)
5. No new features/APIs? **PASS** (table entry only)
6. Can apply to local tree? **PASS**
**Step 9.3 — Exception category**
Record: **Hardware quirk / audio codec quirk** — explicit stable
exception.
**Step 9.4 — Decision rationale**
For Linux 6.18.44, the missing quirk is present, the required fixup
infrastructure exists, and this tree already routinely backports
identical HP mute-LED quirk entries. This is low-risk, hardware-
specific, and matches established stable practice.
---
## Verification
- [Phase 1] Parsed subject, tags, and body from provided commit message
- [Phase 1] Confirmed maintainer sign-off from Takashi Iwai
- [Phase 2] Diff: +1 line `SND_PCI_QUIRK(0x103c, 0x85f0, ...)` in
`alc269_fixup_tbl[]`
- [Phase 2] Read `alc236_fixup_hp_mute_led_coefbit2()` at lines
1551–1563
- [Phase 3] `git blame -L 6734,6736`: gap confirmed at `0x85f0`
- [Phase 3] `git log --grep="mute LED"`: multiple similar quirks already
in 6.18.y
- [Phase 3] `git show 3210077`, `git show a424946e`: confirmed backport
pattern for same quirk class
- [Phase 4] WebFetch of patch link: blocked (Anubis) — UNVERIFIED
- [Phase 4] `b4 dig -c`: not usable (commit not in tree) — UNVERIFIED
- [Phase 5] `grep alc236_fixup_hp_mute_led_coefbit2`: function and 18+
quirk users found
- [Phase 5] Read `snd_hda_pick_fixup()` call site at line 8471
- [Phase 6] `git describe HEAD`: v6.18.44-1-g2736c32da98b9
- [Phase 6] `grep 0x85f0 sound/hda/codecs/realtek/alc269.c`: no match —
quirk missing
- [Phase 6] `grep ALC236_FIXUP_HP_MUTE_LED_COEFBIT2`: fixup present with
full implementation
- [Phase 8] Assessed severity as LOW (LED UX), risk as VERY LOW
**YES**
sound/hda/codecs/realtek/alc269.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c
index 36d5dfa9e1db8..a07f40e9541ee 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -6732,6 +6732,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x854a, "HP EliteBook 830 G6", ALC285_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x85c6, "HP Pavilion x360 Convertible 14-dy1xxx", ALC295_FIXUP_HP_MUTE_LED_COEFBIT11),
SND_PCI_QUIRK(0x103c, 0x85de, "HP Envy x360 13-ar0xxx", ALC285_FIXUP_HP_ENVY_X360),
+ SND_PCI_QUIRK(0x103c, 0x85f0, "HP Laptop 15-dw0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
SND_PCI_QUIRK(0x103c, 0x8603, "HP Omen 17-cb0xxx", ALC285_FIXUP_HP_MUTE_LED),
SND_PCI_QUIRK(0x103c, 0x860c, "HP ZBook 17 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:37 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] ALSA: es18xx: check control allocation before private data setup Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for HP EliteBook 830 G8 (8AB8) to enable mute LEDs Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] ASoC: fs210x: Make cache write through again during resume Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for HP 255 15.6 inch G9 Notebook PC Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Propagate write errors in generic mixer put callbacks Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Fix speakers on MECHREVO WUJIE Series Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] soundwire: only handle alert events when the peripheral is attached Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/conexant: Add pin config quirk for Lenovo IdeaPad Slim 5 16AKP10 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] ASoC: Intel: catpt: Complete coredump handling Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] soundwire: intel_auxdevice: Add cs42l43b to wake_capable_list Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] ALSA: usb-audio: Add quirk flags for SC13A Sasha Levin
2026-08-31 13:22 ` Sasha Levin [this message]
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Fix speakers on Alienware x16 R2 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda: Add Lenovo Legion 7i 16IAX7 17AA3874 quirk Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add quirk for HP Pavilion x360 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for Lenovo Xiaoxin 14 GT Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ASoC: SOF: validate probe info element counts Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: Intel: sof_sdw: append dai type to dai link name unconditionally Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Handle runtime PM resume failures in set_fmt Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: mediatek: mt8365-afe-pcm: fix possible NULL-pointer dereferences in mt8365_afe_suspend() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ALSA: hda: cs35l41: imply SERIAL_MULTI_INSTANTIATE Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ASoC/soundwire: Intel: reset the PCMSyCM registers in hda_sdw_bpt_close Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ALSA: hda/ca0132: add QUIRK_GENERIC path for Gigabyte GA-Z170X-Gaming G1 Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rt5645: Perform the initial jack detect at probe Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for Corsair Virtuoso (later revision) Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ALSA: seq: oss: Reject reads that cannot fit the next event Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] ALSA: ice1724: Fix blocking open for independent surround PCMs Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ASoC: codecs: pcm3168a: Drop CONFIG_PM-conditional preproc directive Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] ASoC: codecs: rk3328: Use managed GPIO and clock helpers Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] ASoC: rt712-sdca: reset codec at io_init to fix silent headphone Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14IRH8 Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] ALSA: usb-audio: qcom: Free QMI handle Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for YAMAHA CDS3000 Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] ASoC: fsl-asoc-card: reduce WM8904 PLL ratio to meet frequency limit Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ASoC: ti: omap3pandora: update board check to use DT compatible Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add quirk for Infinix INBOOK X3 Slim Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] ALSA: hda/tas2781: clear cali_data.total_sz when calibration read fails Sasha Levin
2026-08-31 19:32 ` Philipp Oster
2026-09-01 12:25 ` Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/realtek: Add mute LED quirk for HP Laptop 14s-dr1xxx Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ASoC: tas2781: Update default register address to TAS2563 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] soundwire: validate DT compatible before parsing it Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add quirk for Lenovo Yoga 7 16IAP7 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usx2y: Drain pending US-428 pipe-4 output commands Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] ASoC: codecs: pcm3168a: Prevent regulator double-disable in S4 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] ASoC: amd: yc: Add DMI quirk for HyperX OMEN Gaming Laptop 16-ap1xxx Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add HDA_CODEC_QUIRK for Samsung 750XBE/730XBE Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ASoC: sdw_utils: Add missed component_name strings for TI amps Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] ALSA: usb-audio: Add dB map quirk for Razer Barracuda X 2.4 Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add quirk for HP Dragonfly Folio G3 2-in-1 (103c:8a05) Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] soundwire: dmi-quirks: Disable ghost Realtek devices Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ALSA: hda/tas2781: Fix device-0 reset issue and handle -EXDEV in block data processing Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda: cs35l56: Fail if wmfw file is missing Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add mute LED quirk for HP Victus 16-e0xxx (MB 88ED) Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: spdif: Restore regcache cache-only mode on sync failure Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for Novation Mininova Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.1] ASoC: qcom: q6apm: return error code to consumers on failures Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add CS35L41 I2C quirk for ASUS UM3405GA Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: caiaq: validate EP1 reply lengths Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] ASoC: amd: yc: Add DMI quirk for HP Victus Laptop 16-e1xxx Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] ASoC: Intel: sof_sdw: Add quirks for new Dell laptops Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek - Add quirk for HP Victus 15-fa0xxx (MB 8A50) Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Reorder clock enable sequence Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Fix headphone output on ASUS ROG Ally X Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add quirk for HP Victus 16-e0xxx (88EE) to enable mute LED Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: usb-audio: Add delay quirk for iBasso DC-Elite Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] soundwire: intel: Move suspend tracking from trigger to pm suspend Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ASoC: rt1320: run the initialisation preset on the first hardware init Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: ALC882: Fixup for Clevo P775TM1 Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: seq: Remove arbitrary prioq insertion limit Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.15] ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum650 Wireless Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] ASoC: sof_sdw: Add a quirk for 0x17aa383c laptop using sidecar amps with cs42l43 Sasha Levin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260831133314.4125787-114-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=lombardo.federico.lf@gmail.com \
--cc=patches@lists.linux.dev \
--cc=perex@perex.cz \
--cc=stable@vger.kernel.org \
--cc=tiwai@suse.com \
--cc=tiwai@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox