From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: "Marcel Kłos" <marcel@marmak.net.pl>,
"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-6.1] ALSA: hda/realtek: Add quirk for HP EliteBook 830 G8 (8AB8) to enable mute LEDs
Date: Mon, 31 Aug 2026 09:21:07 -0400 [thread overview]
Message-ID: <20260831133314.4125787-39-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Marcel Kłos <marcel@marmak.net.pl>
[ Upstream commit 728d34ebf91c0e80b63a66b237dd0dfc5a8e5b4d ]
The sound and microphone mute LEDs do not function on this newer
revision of the board (8AB8) while they do on the older 880D models.
I have verified this on another laptop which was manufactured before
the one with the issue.
Added the ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED from a G9 model, which
uses the same codec, to make it work. Tested on kernel version 7.1.3 on
the aforementioned newer revision notebook.
Signed-off-by: Marcel Kłos <marcel@marmak.net.pl>
Link: https://patch.msgid.link/4dab5622-9100-4730-8c99-b58da939549b@marmak.net.pl
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: HP EliteBook 830 G8 (8AB8) Mute LED Quirk
**Local tree:** `v6.18.44` (kernel 6.18.44)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: PARSE THE SUBJECT LINE
**Record:** `[ALSA: hda/realtek]` `[Add]` — Add quirk for HP EliteBook
830 G8 (8AB8) to enable mute LEDs
### Step 1.2: PARSE ALL COMMIT MESSAGE TAGS
**Record:**
- **Signed-off-by:** Marcel Kłos `<marcel@marmak.net.pl>` (author)
- **Signed-off-by:** Takashi Iwai `<tiwai@suse.de>` (ALSA maintainer —
applied to mainline tree)
- **Link:** https://patch.msgid.link/4dab5622-9100-4730-8c99-
b58da939549b@marmak.net.pl
- No Fixes:, Reported-by:, Tested-by:, Reviewed-by:, Acked-by:, or Cc:
stable@vger.kernel.org tags
- Notable: maintainer Signed-off-by indicates acceptance; no syzbot or
multi-reporter signals
### Step 1.3: ANALYZE THE COMMIT BODY TEXT
**Record:**
- **Bug:** Sound and microphone mute LEDs do not function on the newer
board revision (MB 8AB8, PCI SSID `0x103c:0x8ab8`)
- **Symptom:** Mute LEDs stay non-functional; audio itself is not
described as broken
- **Comparison:** Older 880D revision works with existing quirk; author
verified on two laptops (old works, new broken)
- **Root cause (author):** Newer revision needs
`ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED` (CS35L41 SPI amplifier init
chained with HP GPIO LED fixup), same as G9 models with the same codec
- **Testing:** Author tested on kernel 7.1.3 on affected hardware
- **Version info:** None explicit beyond author's test kernel
### Step 1.4: DETECT HIDDEN BUG FIXES
**Record:** Not a hidden bug fix — this is an explicit hardware quirk
addition. It fixes broken mute/mic-mute LED feedback on a specific
laptop model. Not a crash, leak, or race; a hardware-
enablement/workaround fix.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: INVENTORY THE CHANGES
**Record:**
- **Files:** `sound/hda/codecs/realtek/alc269.c` — +1 line, 0 removals
- **Function/table:** `alc269_fixup_tbl[]` (static quirk table)
- **Scope:** Single-file, single-line surgical addition
### Step 2.2: UNDERSTAND THE CODE FLOW CHANGE
**Record:**
- **Before:** PCI SSID `0x103c:0x8ab8` has no matching `SND_PCI_QUIRK`
entry. `snd_hda_pick_fixup()` at probe time finds no match; device
gets default codec setup without CS35L41 SPI init or HP GPIO LED fixup
chain.
- **After:** `0x103c:0x8ab8` maps to
`ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED`, which chains
`cs35l41_fixup_spi_two` → `ALC285_FIXUP_HP_GPIO_LED`.
- **Path affected:** HDA codec probe initialization path for this
specific HP laptop only.
### Step 2.3: IDENTIFY THE BUG MECHANISM
**Record:**
- **Category:** Hardware workaround / codec quirk
- **Mechanism:** Newer EliteBook 830 G8 board revision uses CS35L41 SPI
amplifiers (like G9 models) but was missing from the quirk table. The
older `0x880d` entry uses only `ALC285_FIXUP_HP_GPIO_LED` (no CS35L41
SPI init). Without the correct quirk, GPIO LED control is never
configured, so mute LEDs don't respond.
### Step 2.4: ASSESS THE FIX QUALITY
**Record:**
- **Quality:** Obviously correct pattern — identical fixup already used
for ~20+ HP models in this tree (e.g., `0x8abb`, `0x8ad1`,
`0x8b42`–`0x8b47`)
- **Minimal:** One line, no unrelated changes
- **Regression risk:** Very low — fixup is proven on same-vendor G9
hardware with same codec; author tested on affected machine. Worst
case would be incorrect LED behavior on misidentified hardware, not
audio breakage (author reports audio works without quirk)
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: BLAME THE CHANGED LINES
**Record:**
- Adjacent entry `0x880d` ("HP EliteBook 830 G8") blamed to
`5d324e5159d9e` (v6.18-rc8 merge, Nov 2025) with
`ALC285_FIXUP_HP_GPIO_LED`
- Adjacent entry `0x8ab9` ("HP EliteBook 840 G8 (MB 8AB8)") same commit,
`ALC285_FIXUP_HP_GPIO_LED`
- `0x8ab8` is absent — the gap this commit fills
- `ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED` fixup infrastructure present
since same merge era
### Step 3.2: FOLLOW THE FIXES: TAG
**Record:** No Fixes: tag present. N/A.
### Step 3.3: CHECK FILE HISTORY FOR RELATED CHANGES
**Record:**
- Many similar mute-LED quirk commits in this tree: `89ed38540e6be`,
`7556bd5cd8ef3`, `8db3663d3c3e2`, `bee43f7b9bc62`, etc.
- Standalone one-off quirk, not part of a multi-patch series
- No prerequisites beyond existing
`ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED` infrastructure (confirmed
present)
### Step 3.4: CHECK THE AUTHOR'S OTHER COMMITS
**Record:** No prior commits from Marcel Kłos in `sound/hda/` in this
tree. First-time contributor patch; accepted by maintainer Takashi Iwai.
### Step 3.5: CHECK FOR DEPENDENT/PREREQUISITE COMMITS
**Record:**
- **Dependency:** `ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED` enum, fixup
definition, and `cs35l41_fixup_spi_two()` — all present in 6.18.44
- **Standalone:** Yes — single quirk table entry, no series dependencies
- `git apply --check` on the mbox: **applies cleanly**
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: FIND THE ORIGINAL PATCH DISCUSSION
**Record:**
- Retrieved via `b4 am` from Link URL; saved as `20260714_marcel_alsa_hd
a_realtek_add_quirk_for_hp_elitebook_830_g8_8ab8_to_enable_mute_leds.m
bx`
- Thread: 2 messages, patch only (no review replies in mbox)
- No stable nominations, NAKs, or reviewer comments in retrieved thread
- lore.kernel.org fetch blocked by bot protection; relied on local mbox
### Step 4.2: CHECK WHO REVIEWED THE PATCH
**Record:** Maintainer Takashi Iwai Signed-off-by on committed version.
Original mbox had no Reviewed-by/Acked-by. CC list not retrieved (b4 dig
-w not run on commit hash — commit not yet in this tree).
### Step 4.3: SEARCH FOR THE BUG REPORT
**Record:** No external bug report Link: or Reported-by:. Bug reported
by author directly via patch submission. Severity: mute LED non-
functionality on specific laptop hardware.
### Step 4.4: CHECK FOR RELATED PATCHES AND SERIES
**Record:** Standalone patch, not part of a series. Related context:
`0x880d` quirk for older EliteBook 830 G8 revision already in tree.
### Step 4.5: CHECK STABLE MAILING LIST HISTORY
**Record:** Not searched separately; no stable discussion found in patch
thread. N/A for decision — absence of Cc: stable is expected per
instructions.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: IDENTIFY KEY FUNCTIONS IN THE DIFF
**Record:** Modified data: `alc269_fixup_tbl[]`. Invoked fixup chain:
`cs35l41_fixup_spi_two` → `alc285_fixup_hp_gpio_led` via
`ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED`.
### Step 5.2: TRACE CALLERS
**Record:**
- `snd_hda_pick_fixup(codec, alc269_fixup_models, alc269_fixup_tbl,
alc269_fixups)` called from Realtek codec init at line 8471
- Triggered during HDA codec probe on boot / module load when
`CONFIG_SND_HDA_CODEC_REALTEK` is enabled
- Only affects machines matching PCI SSID `0x103c:0x8ab8`
### Step 5.3: TRACE CALLEES
**Record:**
- `cs35l41_fixup_spi_two` → `comp_generic_fixup(..., "spi", "CSC3551",
..., 2)` — binds CS35L41 SPI amplifier components
- Chained to `alc285_fixup_hp_gpio_led` — configures HP mute LED GPIO
behavior
### Step 5.4: FOLLOW THE CALL CHAIN
**Record:** Boot-time codec probe → PCI SSID match in quirk table →
fixup applied. Not userspace-triggerable; affects only owners of this
specific HP laptop model. Common enterprise laptop (EliteBook 830 G8).
### Step 5.5: SEARCH FOR SIMILAR PATTERNS
**Record:** `ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED` already used
extensively for HP G9/G11/ZBook models in the same table (20+ entries).
This is the established pattern for HP laptops with CS35L41 SPI amps
needing mute LED support.
---
## PHASE 6: CROSS-REFERENCING AGAINST THE LOCAL TREE
### Step 6.1: DOES THE BUGGY CODE EXIST IN THIS TREE?
**Record:** **Yes.** Tree is 6.18.44. `0x880d` EliteBook 830 G8 quirk
exists (older revision, `ALC285_FIXUP_HP_GPIO_LED`). `0x8ab8` is
**missing** — the bug (no quirk for newer revision) is present. All
fixup infrastructure exists.
### Step 6.2: CHECK FOR BACKPORT COMPLICATIONS
**Record:** **Clean apply.** `git apply --check` on mbox succeeded.
Insertion point (before `0x8ab9` entry at line 6868) matches patch
context exactly. No conflicts expected.
### Step 6.3: CHECK IF RELATED FIXES ARE ALREADY HERE
**Record:** No existing quirk for `0x8ab8`. `git log --grep="830 G8"`
and `--grep="8ab8"` returned no matching fix. This fix is not yet
applied.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: IDENTIFY THE SUBSYSTEM AND ITS CRITICALITY
**Record:** **Subsystem:** `sound/hda` — Realtek HDA codec driver.
**Criticality:** PERIPHERAL (laptop-specific audio/LED), but affects a
widely deployed enterprise laptop model.
### Step 7.2: ASSESS SUBSYSTEM ACTIVITY
**Record:** `alc269.c` is actively maintained — numerous quirk additions
in recent history on this stable branch. Mute-LED quirk additions are
routine in this subsystem.
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: DETERMINE WHO IS AFFECTED
**Record:** **Driver-specific / hardware-specific** — owners of HP
EliteBook 830 G8 with motherboard revision 8AB8 (PCI SSID
`0x103c:0x8ab8`). Requires `CONFIG_SND_HDA_CODEC_REALTEK`.
### Step 8.2: DETERMINE THE TRIGGER CONDITIONS
**Record:** Every boot on affected hardware. Deterministic, not a race.
Cannot be triggered by unprivileged users as a security issue — it's a
missing hardware quirk at probe time.
### Step 8.3: DETERMINE THE FAILURE MODE SEVERITY
**Record:** **Failure mode:** Mute and mic-mute keyboard LEDs do not
reflect audio mute state. **Severity: LOW** — no crash, corruption,
hang, or audio breakage. UX/indicator issue only.
### Step 8.4: CALCULATE RISK-BENEFIT RATIO
**Record:**
- **Benefit:** Restores expected LED behavior for EliteBook 830 G8
(8AB8) users on 6.18.y; enterprise laptop with real-world deployment
- **Risk:** Very low — 1-line addition using proven, widely-deployed
fixup chain already in tree
- **Ratio:** Favorable — minimal risk, clear benefit for affected
hardware owners. Falls squarely in the hardware-quirk exception
category for stable.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: COMPILE THE EVIDENCE
**FOR backporting:**
- Hardware codec quirk — explicit stable exception category
- Fixes real, user-verified hardware issue on enterprise laptop
- One line, surgical, uses existing fixup infrastructure
- Applies cleanly to 6.18.44
- Maintainer (Takashi Iwai) Signed-off-by
- Identical fixup pattern proven on 20+ HP models already in tree
- Consistent with numerous similar mute-LED quirk backports in this
file's history
**AGAINST backporting:**
- Low severity — LEDs only, audio works without fix
- Does not meet "important issue" criteria
(crash/security/corruption/deadlock) on its own
- No external bug reports beyond author
- No explicit stable nomination in mailing list thread
**UNRESOLVED:**
- lore.kernel.org full thread not accessible (bot protection); relied on
local mbox (patch only, no discussion)
### Step 9.2: STABLE RULES CHECKLIST
1. Obviously correct and tested? **PASS** — proven fixup chain, author
hardware-tested, maintainer accepted
2. Fixes a real bug affecting users? **PASS** — mute LEDs broken on
specific hardware revision
3. Important issue (crash, security, corruption, deadlock)? **PASS (via
quirk exception)** — not critical severity, but hardware quirk
category is explicitly stable-appropriate
4. Small and contained? **PASS** — 1 line, 1 file
5. No new features or APIs? **PASS** — quirk table entry only, no new
fixup type
6. Can apply to local tree? **PASS** — clean apply verified, all
prerequisites present
### Step 9.3: CHECK FOR EXCEPTION CATEGORIES
**Record:** **Hardware quirk / audio codec quirk** — `SND_PCI_QUIRK`
entry for a specific laptop model using an existing fixup. This is an
explicit stable exception per stable-kernel-rules and the analysis
guidelines.
### Step 9.4: DECISION RATIONALE
This commit adds a one-line PCI quirk for the newer HP EliteBook 830 G8
board revision (`0x8ab8`) that is missing from the 6.18.44 quirk table,
while the older `0x880d` revision is already covered. The fix reuses
`ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED`, which is well-established in
this tree for HP laptops with CS35L41 SPI amplifiers. While mute LED
failure is low severity (no crash or audio breakage), hardware codec
quirks are routinely and appropriately backported to stable — this is
standard ALSA stable material with negligible regression risk and clear
benefit for affected laptop owners.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from provided commit message
and mbox
- **[Phase 1]** Tags: Marcel Kłos SOB, Takashi Iwai SOB, Link to
patch.msgid.link; no Fixes/Reported-by/Cc: stable
- **[Phase 2]** Diff: +1 line in `alc269_fixup_tbl[]`,
`SND_PCI_QUIRK(0x103c, 0x8ab8, ...)`
- **[Phase 2]** Fixup chain verified at lines 6148–6152:
`cs35l41_fixup_spi_two` chained to `ALC285_FIXUP_HP_GPIO_LED`
- **[Phase 3]** `git describe HEAD`: v6.18.44-1-g2736c32da98b9; Makefile
VERSION=6 PATCHLEVEL=18 SUBLEVEL=44
- **[Phase 3]** `git blame` lines 6784, 6868: both adjacent quirks from
`5d324e5159d9e` (v6.18-rc8 era)
- **[Phase 3]** `git log --grep="830 G8"`: no existing fix for 0x8ab8
- **[Phase 3]** `git apply --check` on mbox: **clean apply**
- **[Phase 4]** `b4 am` on Link URL: retrieved 2-message thread, patch
content matches
- **[Phase 4]** WebFetch lore.kernel.org: blocked (bot protection); used
local mbox instead
- **[Phase 5]** `grep ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED`: 20+
existing usages in alc269.c
- **[Phase 5]** `snd_hda_pick_fixup` call site verified at line 8471
- **[Phase 5]** `cs35l41_fixup_spi_two` defined at line 3208
- **[Phase 6]** `grep 0x8ab8` in alc269.c: **not present** (bug exists)
- **[Phase 6]** `grep 0x880d`: present with `ALC285_FIXUP_HP_GPIO_LED`
(older revision)
- **[Phase 6]** `ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED` enum and fixup
definition: **present**
- **[Phase 7]** Recent alc269.c history shows active quirk additions
(mute LED, HP, Lenovo, etc.)
- **[Phase 8]** Failure mode: mute LED non-functionality, severity LOW;
benefit for specific HP hardware
**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 c7c8c59745a3a..7f3e1c47729a1 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -6891,6 +6891,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
+ SND_PCI_QUIRK(0x103c, 0x8ab8, "HP EliteBook 830 G8 Notebook PC (MB 8AB8)", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8ab9, "HP EliteBook 840 G8 (MB 8AB8)", ALC285_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:34 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 ` Sasha Levin [this message]
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 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Enable mute LED quirk for HP Laptop 15-dw0xxx Sasha Levin
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-39-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=marcel@marmak.net.pl \
--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