mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
424210b7be
Manually rebased: backport-5.15/715-v6.0-net-ethernet-mtk_eth_soc-add-the-capability-to-run-m.patch hack-5.15/645-netfilter-connmark-introduce-set-dscpmark.patch[1] Removed upstreamed: pending-5.15/701-netfilter-nf_flow_table-add-missing-locking.patch[2] All other patches automatically rebased 1. Rebase by Kevin 'ldir' Darbyshire-Bryant<ldir@darbyshire-bryant.me.uk> 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.81&id=8db9e60cdfdae5b049e32e82323da8f0f989066a Build system: x86_64 Build-tested: bcm2711/RPi4B, filogic/xiaomi_redmi-router-ax6000-stock Run-tested: bcm2711/RPi4B, filogic/xiaomi_redmi-router-ax6000-stock Signed-off-by: John Audia <therealgraysky@proton.me>
28 lines
989 B
Diff
28 lines
989 B
Diff
From 01160071692034601de24ff811b1996481bfea55 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Bell <jonathan@raspberrypi.com>
|
|
Date: Thu, 15 Apr 2021 13:15:14 +0100
|
|
Subject: [PATCH] sound/usb: add device quirks for A4Tech FHD 1080p
|
|
webcams
|
|
|
|
These devices use a type of Sonix chipset that produces broken microphone
|
|
data if suspended/resumed.
|
|
|
|
They also don't support readback of the sample rate.
|
|
|
|
Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
|
|
---
|
|
sound/usb/quirks.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/sound/usb/quirks.c
|
|
+++ b/sound/usb/quirks.c
|
|
@@ -1884,6 +1884,8 @@ static const struct usb_audio_quirk_flag
|
|
QUIRK_FLAG_GENERIC_IMPLICIT_FB),
|
|
DEVICE_FLG(0x2b53, 0x0031, /* Fiero SC-01 (firmware v1.1.0) */
|
|
QUIRK_FLAG_GENERIC_IMPLICIT_FB),
|
|
+ DEVICE_FLG(0x09da, 0x2695, /* A4Tech FHD 1080p webcam */
|
|
+ QUIRK_FLAG_DISABLE_AUTOSUSPEND | QUIRK_FLAG_GET_SAMPLE_RATE),
|
|
DEVICE_FLG(0x0525, 0xa4ad, /* Hamedal C20 usb camero */
|
|
QUIRK_FLAG_IFACE_SKIP_CLOSE),
|
|
|