From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Richard Fitzgerald <rf@opensource.cirrus.com>,
Pierre-Louis Bossart <pierre-louis.bossart@linux.dev>,
Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>,
lgirdwood@gmail.com, perex@perex.cz, tiwai@suse.com,
alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 7.0-6.19] ASoC: SDCA: Add CS47L47 to class driver
Date: Mon, 20 Apr 2026 09:08:13 -0400 [thread overview]
Message-ID: <20260420131539.986432-27-sashal@kernel.org> (raw)
In-Reply-To: <20260420131539.986432-1-sashal@kernel.org>
From: Richard Fitzgerald <rf@opensource.cirrus.com>
[ Upstream commit ada32396f90951e12465224c04742607ca56a982 ]
Add the SoundWire ID for CS47L47 to the class driver.
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.dev>
Link: https://patch.msgid.link/20260223150256.326143-4-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Now I have all the information needed. Let me compile my analysis.
---
## PHASE 1: COMMIT MESSAGE FORENSICS
**Step 1.1: Subject Line**
- Subsystem: `ASoC: SDCA`
- Action verb: "Add" (device ID addition)
- Summary: Add CS47L47 SoundWire device ID to the SDCA class driver
Record: [ASoC: SDCA] [Add] [SoundWire ID for CS47L47 added to class
driver device table]
**Step 1.2: Tags**
- `Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>` -
Author, Cirrus Logic employee (device vendor)
- `Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.dev>` -
SoundWire subsystem reviewer
- `Link: https://patch.msgid.link/20260223150256.326143-4-
rf@opensource.cirrus.com` - patch 4 of a series (message numbering
indicates patch 3/3 of the content, with 1 being cover letter)
- `Signed-off-by: Mark Brown <broonie@kernel.org>` - Applied by the ASoC
subsystem maintainer
- No Fixes: tag (expected for a device ID addition)
- No Cc: stable (expected)
Record: Reviewed by SoundWire expert. Applied by ASoC maintainer. Author
is from Cirrus Logic (vendor).
**Step 1.3: Commit Body**
The body is minimal: "Add the SoundWire ID for CS47L47 to the class
driver." This is standard for device ID additions — no bug description
needed because this is hardware enablement.
Record: Straightforward device ID addition. No bug fix, no failure mode
described.
**Step 1.4: Hidden Bug Fix Detection**
This is not a hidden bug fix. It is a device ID addition to enable new
hardware (CS47L47 audio codec) on an existing driver. This falls
squarely into the "NEW DEVICE IDs" exception category.
Record: Not a hidden bug fix. It's a device ID addition — an explicit
exception category for stable.
## PHASE 2: DIFF ANALYSIS
**Step 2.1: Inventory**
- Files changed: 1 (`sound/soc/sdca/sdca_class.c`)
- Lines added: 1
- Lines removed: 0
- Function modified: None — change is in the `class_sdw_id[]` static
data table
- Scope: Single-line addition to a device ID table — as minimal as
possible
Record: [sound/soc/sdca/sdca_class.c +1/-0] [No function logic changed,
only data table entry added] [Trivial single-line]
**Step 2.2: Code Flow Change**
- Before: The `class_sdw_id[]` table contains one entry
`SDW_SLAVE_ENTRY(0x01FA, 0x4245, 0)` matching one Cirrus Logic device.
- After: The table has two entries, adding `SDW_SLAVE_ENTRY(0x01FA,
0x4747, 0)` for CS47L47.
- Effect: The SoundWire bus will now match CS47L47 devices to this
driver and call `class_sdw_probe()`.
Record: Before: only CS42L45 (0x4245) matched. After: CS47L47 (0x4747)
also matched. Normal probe path, no error path changes.
**Step 2.3: Bug Mechanism**
Category (h) — Hardware workarounds/enablement. This is a device ID
addition, not a bug fix.
Record: [Device ID addition] [Adds SoundWire slave entry for CS47L47 to
existing driver's ID table]
**Step 2.4: Fix Quality**
- Obviously correct: Yes — identical pattern to the existing entry, just
a different device/part ID
- Minimal: Yes — exactly 1 line
- Regression risk: Essentially zero — only affects CS47L47 hardware;
cannot impact existing devices
- No red flags
Record: Trivially correct. Zero regression risk for existing devices.
## PHASE 3: GIT HISTORY
**Step 3.1: Blame**
The device ID table was introduced in commit `2d877d0659cb6` ("ASoC:
SDCA: Add basic SDCA class driver") by Charles Keepax, November 2025.
This was merged in v6.19-rc1. The SDCA class driver exists in v7.0.
Record: Driver introduced in v6.19, present in v7.0. Device ID table
area unchanged since creation.
**Step 3.2: No Fixes: tag** — expected, as this is a device ID addition.
**Step 3.3: File History**
Only 3 commits to `sdca_class.c`:
1. `2d877d0659cb6` - Initial driver
2. `7a5214f769c7c` - Add suspend support
3. `da7afdc79cba0` - Add init serialization lock
All are from the same Cirrus Logic team. No conflicting changes.
Record: Clean history, no prerequisites needed beyond the base driver.
**Step 3.4: Author**
Richard Fitzgerald is a Cirrus Logic engineer, the vendor of the
CS47L47. He's a regular contributor to the Cirrus Logic sound codec
drivers (cs35l56, cs42l42 family). This is authoritative — the device
vendor adding their own device ID.
Record: Author is from the device vendor (Cirrus Logic), regular sound
subsystem contributor.
**Step 3.5: Dependencies**
This is patch 3/3 of the series "ASoC: SDCA: Initial support for Cirrus
Logic CS47L47":
1. `soundwire: intel_auxdevice: Add CS47L47 to wake_capable_list`
(supplementary)
2. `ASoC: soc_sdw_utils: Add device info for CS47L47` (supplementary)
3. This commit: Add device ID to class driver (core enablement)
This commit is standalone — it adds the device ID that allows probe. The
other patches add supplementary features (wake capability, extra device
info) but are not prerequisites for basic device operation via the class
driver.
Record: Standalone. Other series patches are supplementary, not required
for this to work.
## PHASE 4: MAILING LIST
**Step 4.1-4.5: External Research**
Lore pages were blocked by anti-scraping, but from patchew.org I
confirmed:
- This is patch 3/3 of the series
- The patch was reviewed by Pierre-Louis Bossart (SoundWire expert)
- Applied by Mark Brown (ASoC maintainer)
- No NAKs, no concerns raised
- Single revision — no v2/v3 needed
Record: Clean review. Applied by maintainer. No concerns raised.
## PHASE 5: CODE SEMANTIC ANALYSIS
**Step 5.1-5.5:**
The only change is in the `class_sdw_id[]` data table. No functions are
modified. The table is consumed by the SoundWire bus matching
infrastructure — when a CS47L47 device appears on the bus, the existing
`class_sdw_probe()` function will be called. This is a well-tested code
path (already used for the CS42L45 device).
Record: No function logic changed. The existing probe path handles the
new device ID through standard bus matching.
## PHASE 6: STABLE TREE ANALYSIS
**Step 6.1:** The SDCA class driver was introduced in v6.19. This v7.0
stable tree has the driver. The file has had minimal changes (3 total
commits) and the device ID table area is untouched since creation.
**Step 6.2:** The patch will apply cleanly — the context around the
device ID table is unchanged from the original driver creation.
**Step 6.3:** No related fixes already in stable for this device.
Record: Code exists in v7.0 stable. Clean apply expected. No conflicts.
## PHASE 7: SUBSYSTEM CONTEXT
**Step 7.1:** ASoC (ALSA System on Chip) / SDCA — audio codec driver.
Criticality: IMPORTANT — audio is a core user-facing feature on laptops
and embedded devices.
**Step 7.2:** Active subsystem with regular contributions from Cirrus
Logic and Intel teams.
Record: [ASoC/SDCA audio] [IMPORTANT criticality] [Active subsystem]
## PHASE 8: IMPACT AND RISK
**Step 8.1:** Affected users: Anyone with CS47L47 hardware (Cirrus Logic
audio codec on SoundWire bus). Without this patch, the CS47L47 device
will not be recognized by the kernel and audio will not work.
**Step 8.2:** Trigger: Device enumeration on the SoundWire bus during
boot. Every user with this hardware is affected, every boot.
**Step 8.3:** Without this fix: no audio support for CS47L47 hardware.
Severity: MEDIUM-HIGH (hardware completely non-functional).
**Step 8.4:** Risk-benefit:
- BENEFIT: HIGH — enables an entire audio codec for users with this
hardware
- RISK: VERY LOW — 1 line, identical pattern to existing entry, only
affects CS47L47 hardware, zero regression risk for other devices
- Ratio: Excellent
Record: [HIGH benefit] [VERY LOW risk] [Excellent ratio]
## PHASE 9: FINAL SYNTHESIS
**Step 9.1: Evidence**
FOR backporting:
- Classic device ID addition (explicit stable exception category)
- Single line change, obviously correct
- Zero regression risk for existing devices
- From the device vendor (Cirrus Logic)
- Reviewed by SoundWire expert, applied by ASoC maintainer
- Enables hardware that is completely non-functional without it
- Applies cleanly to v7.0
AGAINST backporting:
- Not a bug fix per se (hardware enablement)
- Part of a 3-patch series (but standalone for basic support)
**Step 9.2: Stable Rules Checklist**
1. Obviously correct and tested? YES — trivial pattern match, reviewed,
applied by maintainer
2. Fixes a real bug? N/A — device ID addition exception
3. Important issue? YES — hardware completely non-functional without it
4. Small and contained? YES — 1 line
5. No new features or APIs? Correct — no new features, just device
recognition
6. Can apply to stable? YES — clean apply
**Step 9.3: Exception Category**
YES — this is a **NEW DEVICE ID** addition to an existing driver. This
is explicitly listed as an allowed exception for stable trees.
**Step 9.4: Decision**
This is a textbook device ID addition — a single `SDW_SLAVE_ENTRY` line
added to an existing driver's device table. It enables the CS47L47 audio
codec to be recognized by the kernel's SDCA class driver. The change is
trivially correct, carries zero regression risk, and falls into the
explicit "New Device IDs" exception category for stable.
## Verification
- [Phase 1] Parsed tags: Reviewed-by Pierre-Louis Bossart, Signed-off-by
Mark Brown (maintainer)
- [Phase 2] Diff analysis: exactly 1 line added —
`SDW_SLAVE_ENTRY(0x01FA, 0x4747, 0)` to device ID table
- [Phase 3] git blame: device ID table introduced in commit
2d877d0659cb6 (v6.19), unchanged since
- [Phase 3] git log: only 3 commits to sdca_class.c, clean history
- [Phase 3] Author: Richard Fitzgerald is Cirrus Logic (device vendor)
engineer, regular contributor
- [Phase 4] patchew.org: confirmed patch 3/3 of series, clean review, no
NAKs
- [Phase 4] b4 dig: failed to find (commit not in local tree), used web
search instead
- [Phase 4] lore: blocked by anti-scraping (Anubis), used patchew as
fallback
- [Phase 5] No function logic changed — only data table addition
- [Phase 6] SDCA class driver exists in v7.0 (introduced v6.19), clean
apply expected
- [Phase 6] Confirmed no 0x4747 or CS47L47 references exist in current
tree
- [Phase 7] ASoC subsystem, IMPORTANT criticality
- [Phase 8] Benefit: HIGH (enables hardware); Risk: VERY LOW (1-line
data-only change)
- UNVERIFIED: Could not read original lore discussion directly due to
anti-scraping. Used patchew mirror instead, which showed no concerns.
**YES**
sound/soc/sdca/sdca_class.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/sdca/sdca_class.c b/sound/soc/sdca/sdca_class.c
index 918b638acb577..55c33ff63ca21 100644
--- a/sound/soc/sdca/sdca_class.c
+++ b/sound/soc/sdca/sdca_class.c
@@ -317,6 +317,7 @@ static const struct dev_pm_ops class_pm_ops = {
static const struct sdw_device_id class_sdw_id[] = {
SDW_SLAVE_ENTRY(0x01FA, 0x4245, 0),
+ SDW_SLAVE_ENTRY(0x01FA, 0x4747, 0),
{}
};
MODULE_DEVICE_TABLE(sdw, class_sdw_id);
--
2.53.0
next prev parent reply other threads:[~2026-04-20 13:16 UTC|newest]
Thread overview: 90+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-20 13:07 [PATCH AUTOSEL 6.18] ALSA: hda/realtek: add quirk for Lenovo Yoga 7 2-in-1 16AKP10 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] net: stmmac: Fix PTP ref clock for Tegra234 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] ring-buffer: Enforce read ordering of trace_buffer cpumask and buffers Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.6] PCI: Prevent assignment to unsupported bridge windows Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] smb: client: fix integer underflow in receive_encrypted_read() Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] gpio: lp873x: normalize return value of gpio_get Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] ALSA: hda: cs35l41: Fix boost type for HP Dragonfly 13.5 inch G4 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.18] wifi: mt76: don't return TXQ when exceeding max non-AQL packets Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] arm64: dts: imx91-tqma9131: improve eMMC pad configuration Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] ASoC: amd: acp: add ASUS HN7306EA quirk for legacy SDW machine Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] wifi: mac80211: properly handle error in ieee80211_add_virtual_monitor Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] net: qrtr: fix endian handling of confirm_rx field Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.18] mmc: sdhci-esdhc-imx: wait for data transfer completion before reset Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] tracing/probe: reject non-closed empty immediate strings Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] media: rc: fix race between unregister and urb/irq callbacks Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] netfilter: xt_multiport: validate range encoding in checkentry Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] arm64: dts: imx93-tqma9352: improve eMMC pad configuration Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] dm vdo slab-depot: validate old zone count on load Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] wifi: mt76: mt792x: Fix a potential deadlock in high-load situations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] orangefs: add usercopy whitelist to orangefs_op_cache Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ice: ptp: don't WARN when controlling PF is unavailable Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] e1000: check return value of e1000_read_eeprom Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] ALSA: usb-audio: Add quirks for Arturia AF16Rig Sasha Levin
2026-04-20 13:27 ` Philip Willoughby
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] ALSA: asihpi: detect truncated control names Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] ALSA: hda/realtek: Add support for ASUS 2026 Commercial laptops using CS35L41 HDA Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] jfs: Set the lbmDone flag at the end of lbmIODone Sasha Levin
2026-04-20 14:10 ` Edward Adam Davis
2026-04-20 13:08 ` Sasha Levin [this message]
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: renesas: vsp1: rpf: Fix crop left and top clamping Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ASoC: amd: yc: Add DMI entry for HP Laptop 15-fc0xxx Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: au0828: Fix green screen in analog Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ASoC: Intel: avs: Fix memory leak in avs_register_i2s_test_boards() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] nvme-loop: do not cancel I/O and admin tagset during ctrl reset/shutdown Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] bpf, sockmap: Annotate af_unix sock:: Sk_state data-races Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] net: wangxun: reorder timer and work sync cancellations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] PCI: tegra194: Assert CLKREQ# explicitly by default Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] net: mvneta: support EPROBE_DEFER when reading MAC address Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: add quirk for Framework F111:000F Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] jfs: add dmapctl integrity check to prevent invalid operations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] wifi: mac80211: Remove deleted sta links in ieee80211_ml_reconf_work() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] HID: logitech-hidpp: fix race condition when accessing stale stack pointer Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] net/mlx5e: XSK, Increase size for chunk_size param Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] PCI: dwc: Proceed with system suspend even if the endpoint doesn't respond with PME_TO_Ack message Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ACPI: processor: idle: Fix NULL pointer dereference in hotplug path Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ppp: disconnect channel before nullifying pch->chan Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] wifi: iwlwifi: mvm: zero iwl_geo_tx_power_profiles_cmd before sending Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] ALSA: pcm: Serialize snd_pcm_suspend_all() with open_mutex Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] Bluetooth: hci_qca: disable power control for WCN7850 when bt_en is not defined Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] Bluetooth: hci_qca: Fix missing wakeup during SSR memdump handling Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] pinctrl: intel: Fix the revision for new features (1kOhm PD, HW debouncer) Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] fbdev: viafb: check ioremap return value in viafb_lcd_get_mobile_state Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] drm/panel-edp: Add BOE NV153WUM-N42, CMN N153JCA-ELK, CSW MNF307QS3-2 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0] drm/amdgpu/userq: remove queue from doorbell xarray Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] memory: brcmstb_memc: Expand LPDDR4 check to cover for LPDDR5 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] nouveau: pci: quiesce GPU on shutdown Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] perf/amd/ibs: Avoid race between event add and NMI Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] drm/amd/display: Fix dcn401_optimize_bandwidth Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] wifi: rtw88: coex: Ignore BT info byte 5 from RTL8821A Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] btrfs: tracepoints: get correct superblock from dentry in event btrfs_sync_file() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] ALSA: hda/realtek: Add quirk for CSL Unity BF24B Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: stm32: dcmi: stop the dma transfer on overrun Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ALSA: aoa/onyx: Fix OF node leak on probe failure Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] drm/bridge: waveshare-dsi: Register and attach our DSI device at probe Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] wifi: rtw89: retry efuse physical map dump on transient failure Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] netfilter: nfnetlink_queue: make hash table per queue Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] gpio: cgbc: normalize return value of gpio_get Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] HID: logitech-hidpp: Check bounds when deleting force-feedback effects Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] x86: shadow stacks: proper error handling for mmap lock Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] sched: Fix incorrect schedstats for rt and dl thread Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] wifi: iwlwifi: pcie: don't dump on reset handshake in dump Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] net: sfp: add quirks for Hisense and HSGQ GPON ONT SFP modules Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ixgbevf: add missing negotiate_features op to Hyper-V ops table Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] btrfs: use BTRFS_FS_UPDATE_UUID_TREE_GEN flag for UUID tree rescan check Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.19] Bluetooth: hci_ll: Enable BROKEN_ENHANCED_SETUP_SYNC_CONN for WL183x Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] wifi: mt76: abort ROC on chanctx changes Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] perf/amd/ibs: Limit ldlat->l3missonly dependency to Zen5 Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] drm/amdkfd: Fix queue preemption/eviction failures by aligning control stack size to GPU page size Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] clockevents: Prevent timer interrupt starvation Sasha Levin
2026-04-20 14:12 ` Thomas Gleixner
2026-04-21 6:26 ` [PATCH stable backport] clockevents: Add missing resets of the next_event_forced flag Thomas Gleixner
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] ASoC: tas2552: Allow audio enable GPIO to sleep Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] wifi: ath12k: Fix the assignment of logical link index Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.12] drm/amdgpu: fix DF NULL pointer issue for soc24 Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] drm/ttm: Avoid invoking the OOM killer when reading back swapped content Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] drm/vc4: Release runtime PM reference after binding V3D Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] media: i2c: mt9p031: Check return value of devm_gpiod_get_optional() in mt9p031_probe() Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] Bluetooth: hci_sync: annotate data-races around hdev->req_status Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] ASoC: Intel: bytcr_rt5651: Fix MCLK leak on platform_clock_control error 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=20260420131539.986432-27-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@lists.linux.dev \
--cc=perex@perex.cz \
--cc=pierre-louis.bossart@linux.dev \
--cc=rf@opensource.cirrus.com \
--cc=stable@vger.kernel.org \
--cc=tiwai@suse.com \
/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