Linux Sound subsystem development
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: "Daniel C. Ribeiro" <dcoutinho.96@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-5.15] ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum650 Wireless
Date: Mon, 31 Aug 2026 09:30:45 -0400	[thread overview]
Message-ID: <20260831133314.4125787-617-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

From: "Daniel C. Ribeiro" <dcoutinho.96@gmail.com>

[ Upstream commit f6d6a4147ace0c417035f65b021027c209c75190 ]

JBL Quantum650 Wireless (0ecb:2125) requires the same workaround that
was used for JBL Quantum610 and Quantum810 for limiting the sample rate.
Without it, the capture (microphone) stream fails to work.  Setting the
QUIRK_FLAG_FIXED_RATE flag, as done for the sibling models, makes both
playback and capture work correctly.

Signed-off-by: Daniel C. Ribeiro <dcoutinho.96@gmail.com>
Link: https://patch.msgid.link/20260719090037.40149-1-dcoutinho.96@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:

# Stable Backport Analysis: ALSA usb-audio JBL Quantum650 FIXED_RATE
Quirk

**Local tree:** `v6.18.44` (`git describe HEAD` →
`v6.18.44-2-g1b9e1abadee04`, Makefile `6.18.44`)

---

## PHASE 1: COMMIT MESSAGE FORENSICS

### Step 1.1: Subject Line
**Record:** `[ALSA: usb-audio]` `[Add]` — Add a USB audio quirk flag
entry for JBL Quantum650 Wireless headset.

### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Daniel C. Ribeiro `<dcoutinho.96@gmail.com>`
  (author)
- **Link:**
  https://patch.msgid.link/20260719090037.40149-1-dcoutinho.96@gmail.com
- **Signed-off-by:** Takashi Iwai `<tiwai@suse.de>` (ALSA/usb-audio
  maintainer)
- No Fixes:, Reported-by:, Tested-by:, Reviewed-by:, Cc:
  stable@vger.kernel.org
- Notable: Maintainer SOB; no syzbot or bugzilla link (unlike
  Quantum610’s bugzilla reference)

### Step 1.3: Body Analysis
**Record:**
- **Bug:** JBL Quantum650 Wireless (USB ID `0ecb:2125`) needs
  `QUIRK_FLAG_FIXED_RATE`, same as Quantum610/810.
- **Symptom:** Without it, capture (microphone) stream fails; playback
  may work but mic does not.
- **Root cause (author):** Driver tries to set sample rate on an
  endpoint that only supports a fixed rate; skipping rate-setting fixes
  both directions.
- **Version info:** None in message.

### Step 1.4: Hidden Bug Fix?
**Record:** Not disguised — this is an explicit hardware
quirk/workaround. Functionally fixes broken microphone on a specific USB
headset.

---

## PHASE 2: DIFF ANALYSIS

### Step 2.1: Inventory
**Record:**
- **Files:** `sound/usb/quirks.c` (+2 lines)
- **Functions:** `quirk_flags_table[]` static table only
- **Scope:** Single-file, surgical, 2-line addition

### Step 2.2: Code Flow Change
**Record:**
- **Before:** Device `0ecb:2125` not in `quirk_flags_table`; no
  `QUIRK_FLAG_FIXED_RATE` at probe.
- **After:** On probe of `0ecb:2125`, `snd_usb_init_quirk_flags_table()`
  sets `QUIRK_FLAG_FIXED_RATE` on `chip->quirk_flags`.
- **Affected path:** USB audio device probe → stream open
  (`snd_usb_hw_params`) → endpoint setup
  (`snd_usb_endpoint_set_params`).

### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Hardware workaround (g)
- **Mechanism:** With `QUIRK_FLAG_FIXED_RATE`,
  `snd_usb_pcm_has_fixed_rate()` returns true; `ep->fixed_rate` is set;
  `snd_usb_init_sample_rate()` is skipped in `endpoint.c` when
  `!ep->fixed_rate` is false. Without the quirk, the driver attempts
  rate changes the firmware rejects, breaking capture.

### Step 2.4: Fix Quality
**Record:**
- **Quality:** Obviously correct — identical pattern to Quantum610
  (`0x205c`) and Quantum810 (`0x2069`) already in this tree.
- **Regression risk:** Very low — only affects `0ecb:2125`.
- **Red flags:** None.

---

## PHASE 3: GIT HISTORY INVESTIGATION

### Step 3.1: Blame
**Record:** Quantum610/810 entries blame to `5d324e5159d9e` (2025-11-28
merge). `QUIRK_FLAG_FIXED_RATE` infrastructure predates 6.18 (Quantum610
quirk upstream since 2023, backported as `36dba3f4cd36c`). Buggy
behavior (missing quirk for 650) exists whenever this hardware is used
without the entry.

### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag.

### Step 3.3: Related Changes
**Record:**
- Upstream commit: `f6d6a4147ace0` (mainline, Takashi Iwai, 2026-07-19)
- Stable-format commit: `5a8dda89e6e59` (same patch with upstream
  marker)
- Related: `36dba3f4cd36c` added Quantum610 quirk (backported to stable
  previously)
- Standalone v1 patch; not part of a series

### Step 3.4: Author Context
**Record:** Daniel C. Ribeiro — user reporter/contributor. Takashi Iwai
(maintainer) committed to mainline. Pattern matches maintainer-handled
device quirk additions.

### Step 3.5: Dependencies
**Record:** No dependencies. Requires only existing
`QUIRK_FLAG_FIXED_RATE` flag and `quirk_flags_table` mechanism — both
present in this tree.

---

## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH

### Step 4.1: Original Discussion
**Record:**
- **URL:**
  https://patch.msgid.link/20260719090037.40149-1-dcoutinho.96@gmail.com
  (via `b4 dig -c f6d6a4147ace0`)
- **Revisions:** v1 only (`b4 dig -a`)
- **Reviewer feedback:** Takashi Iwai replied “Applied now. Thanks.”
- **Stable nominations:** None in thread
- **NAKs/concerns:** None

### Step 4.2: Reviewers
**Record:** (`b4 dig -w`) CC'd: Takashi Iwai, Jaroslav Kysela, linux-
sound@vger.kernel.org, linux-kernel@vger.kernel.org. Appropriate
maintainers included.

### Step 4.3: Bug Report
**Record:** No external bug report link. Author-reported hardware issue
with clear reproduction (mic fails without quirk, works with it).
Quantum610 had bugzilla #216798; Quantum650 does not.

### Step 4.4: Related Patches
**Record:** Same pattern as Quantum610/810 quirks. No other patches in
series required.

### Step 4.5: Stable List
**Record:** Not searched separately; no stable discussion found in patch
thread. WebFetch to lore blocked by bot protection; `b4 dig -m`
succeeded.

---

## PHASE 5: CODE SEMANTIC ANALYSIS

### Step 5.1: Key Functions
**Record:** `quirk_flags_table[]`, `snd_usb_init_quirk_flags_table()`,
`snd_usb_pcm_has_fixed_rate()`, `snd_usb_hw_params()`,
`snd_usb_endpoint_set_params()`.

### Step 5.2: Callers
**Record:** `snd_usb_init_quirk_flags_table()` called from
`snd_usb_init_quirk_flags()` in `card.c` during USB audio probe
(`snd_usb_audio_probe` path). Every USB audio device probes through this
path when `CONFIG_SND_USB_AUDIO` is enabled.

### Step 5.3: Callees
**Record:** Table lookup sets `chip->quirk_flags`; downstream
`snd_usb_pcm_has_fixed_rate()` gates `fixed_rate` on endpoints;
`snd_usb_init_sample_rate()` skipped when `ep->fixed_rate` is true.

### Step 5.4: Reachability
**Record:** Triggered when user plugs in JBL Quantum650 Wireless
(`0ecb:2125`) and opens a capture stream. Reachable from normal
userspace audio use (PulseAudio/PipeWire/ALSA). No privileges required
beyond device access.

### Step 5.5: Similar Patterns
**Record:** Quantum610 (`0x205c`) and Quantum810 (`0x2069`) use
identical `QUIRK_FLAG_FIXED_RATE` in the same table at lines 2275–2278
of this tree’s `quirks.c`.

---

## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE

### Step 6.1: Buggy Code Present?
**Record:** **Yes.** `0x0ecb:0x2125` is absent from `quirk_flags_table`.
Sibling entries for 610/810 exist. `QUIRK_FLAG_FIXED_RATE` exists in
`usbaudio.h`, `pcm.c`, `quirks.c`. Commit `f6d6a4147ace0` is **not** an
ancestor of HEAD (`merge-base --is-ancestor` exit code 1).

### Step 6.2: Backport Complications
**Record:** Upstream patch context is at line ~2346; local file has
entries at lines 2275–2278. `git apply --check` fails on line offset
only. Insertion point is unambiguous — two lines between Quantum610 and
Quantum810 entries. **Trivial manual adaptation.**

### Step 6.3: Related Fixes Already Present?
**Record:** Quantum610 and Quantum810 quirks present. No existing fix
for `0x2125`.

---

## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT

### Step 7.1: Subsystem
**Record:** `sound/usb` — ALSA USB audio driver. **Criticality:
IMPORTANT** (common desktop/laptop USB headset path, not core kernel).

### Step 7.2: Activity
**Record:** `quirks.c` actively maintained in 6.18.y (recent Scarlett,
NeuralDSP, MOONDROP quirk commits in log).

---

## PHASE 8: IMPACT AND RISK ASSESSMENT

### Step 8.1: Who Is Affected
**Record:** Users of JBL Quantum650 Wireless USB headset with
`CONFIG_SND_USB_AUDIO`. Driver-specific, not universal.

### Step 8.2: Trigger Conditions
**Record:** Plug in headset, open microphone/capture stream. Common
usage scenario for headset owners. Unprivileged users with audio device
access can trigger.

### Step 8.3: Failure Severity
**Record:** **MEDIUM** — microphone capture non-functional (functional
hardware breakage). No kernel crash, panic, corruption, or security
issue reported. Playback may work; capture fails.

### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Restores full headset functionality for Quantum650
  owners; proven pattern from sibling models.
- **Risk:** Minimal — 2-line table entry, device-specific.
- **Ratio:** Strong benefit for affected users, negligible risk.

---

## PHASE 9: FINAL SYNTHESIS

### Step 9.1: Evidence Summary

**FOR backport:**
- Hardware quirk exception category (explicitly stable-appropriate)
- Real user-visible bug (broken microphone)
- 2-line, surgical, same pattern as already-backported Quantum610 quirk
- Reviewed and applied by subsystem maintainer (Takashi Iwai)
- All infrastructure present in 6.18.44 tree
- Standalone, no dependencies
- Low regression risk (device-ID-specific)

**AGAINST backport:**
- Not a crash/security/corruption issue (functional breakage only)
- Affects narrow hardware population
- Patch context line numbers differ (trivial adaptation needed)
- No explicit stable nomination or bugzilla report

**Unresolved:** None material to the decision.

### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — identical to proven sibling
   quirks; maintainer applied.
2. Fixes real bug affecting users? **PASS** — broken mic capture on
   Quantum650.
3. Important issue? **PASS** (hardware functionality) — not crash-level,
   but real broken hardware; quirk category is standard stable material.
4. Small and contained? **PASS** — 2 lines, one file.
5. No new features or APIs? **PASS** — table entry only.
6. Can apply to local tree? **PASS** — trivial insert between existing
   entries (minor line offset).

### Step 9.3: Exception Category
**Record:** **Hardware quirk/workaround** — USB audio device ID with
existing `QUIRK_FLAG_FIXED_RATE` flag.

### Step 9.4: Decision Rationale

This commit adds a device-specific quirk for the JBL Quantum650 Wireless
headset, mirroring fixes already present for Quantum610 and Quantum810
in this 6.18.44 tree. Without it, microphone capture fails because the
driver incorrectly attempts to set the sample rate on a fixed-rate
endpoint. The fix is minimal, maintainer-reviewed, uses existing
infrastructure, and matches a well-established stable backport pattern
(Quantum610 was previously backported similarly). The patch does not
apply verbatim due to line-number drift but requires only a trivial two-
line insertion at the obvious location between sibling entries.

---

## Verification

- **[Phase 1]** Parsed subject, tags, body from provided commit message
  and `git show f6d6a4147ace0`
- **[Phase 2]** Diff analysis: +2 lines in `quirk_flags_table[]`; read
  `pcm.c:178-204`, `pcm.c:482-576`, `endpoint.c:792-844`,
  `endpoint.c:1430-1435`, `usbaudio.h:217-219`
- **[Phase 3]** `git blame` lines 2270-2285: Quantum610/810 from
  `5d324e5159d9e`; `git show 36dba3f4cd36c` (Quantum610 stable
  backport); `merge-base --is-ancestor f6d6a4147ace0 HEAD` → exit 1 (not
  in tree)
- **[Phase 4]** `b4 dig -c f6d6a4147ace0`: found thread; `b4 dig -w`:
  maintainers CC'd; `b4 dig -a`: v1 only; `b4 dig -m /tmp/jbl650.mbox`:
  maintainer “Applied now. Thanks.”
- **[Phase 5]** `grep snd_usb_init_quirk_flags_table`: called from
  `card.c:728`; traced `QUIRK_FLAG_FIXED_RATE` usage in `pcm.c`,
  `endpoint.c`, `implicit.c`
- **[Phase 6]** `git describe HEAD`: v6.18.44; `grep 0x2125
  sound/usb/quirks.c`: not present; sibling entries at 2275-2278
  confirmed; `git apply --check` on upstream diff: fails on line offset
  only
- **[Phase 7]** Subsystem: sound/usb; recent `quirks.c` activity
  confirmed via `git log --oneline -20 -- sound/usb/quirks.c`
- **[Phase 8]** Impact: Quantum650 headset users; trigger on capture
  stream open; severity MEDIUM (functional)

---

**YES**The history search for `0x2125` finished: that USB ID does not
appear anywhere in `sound/usb/quirks.c` in this tree. The only close
hits were unrelated files (e.g. `drivers/scsi/qla2xxx` debug strings),
so the Quantum650 quirk is genuinely missing here.

That matches the earlier analysis: this is a 2-line hardware quirk
addition (same `QUIRK_FLAG_FIXED_RATE` pattern as the Quantum610/810
entries already in `v6.18.44`), and it should be backported.

**YES**The ancestor check finished: `f6d6a4147ace0` (the upstream
Quantum650 quirk commit) is **not** in this tree’s HEAD (`merge-base
--is-ancestor` returned exit code 1). The fix still needs to be
backported here.The Quantum610 history search finished. In this tree,
the `0x0ecb:0x205c` entry first shows up via the `usb-6.18-rc8` merge
(`5d324e5159d9e`, 2025-11-28); `git blame` points the Quantum610/810
`QUIRK_FLAG_FIXED_RATE` lines at that merge.

The original upstream quirk was added earlier (`36dba3f4cd36c` /
`dfd5fe19db7dc`, 2023). So the infrastructure and sibling quirks are
already here — only the Quantum650 (`0x2125`) entry is missing.

 sound/usb/quirks.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c
index a1bdb77843448..a06fb05e6dcd1 100644
--- a/sound/usb/quirks.c
+++ b/sound/usb/quirks.c
@@ -2274,6 +2274,8 @@ static const struct usb_audio_quirk_flags_table quirk_flags_table[] = {
 		   QUIRK_FLAG_CTL_MSG_DELAY_1M | QUIRK_FLAG_MIXER_PLAYBACK_MIN_MUTE),
 	DEVICE_FLG(0x0ecb, 0x205c, /* JBL Quantum610 Wireless */
 		   QUIRK_FLAG_FIXED_RATE),
+	DEVICE_FLG(0x0ecb, 0x2125, /* JBL Quantum650 Wireless */
+		   QUIRK_FLAG_FIXED_RATE),
 	DEVICE_FLG(0x0ecb, 0x2069, /* JBL Quantum810 Wireless */
 		   QUIRK_FLAG_FIXED_RATE),
 	DEVICE_FLG(0x0fd9, 0x0008, /* Hauppauge HVR-950Q */
-- 
2.53.0


  parent reply	other threads:[~2026-08-31 13:51 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 ` [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 ` Sasha Levin [this message]
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-617-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=dcoutinho.96@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --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