Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ALSA: usb-audio: fix Hamedal C20 usb camero disconnect issue
@ 2022-11-04  7:35 aichao
  2022-11-04  8:06 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: aichao @ 2022-11-04  7:35 UTC (permalink / raw)
  To: perex, tiwai, alsa-devel; +Cc: aichao, linux-kernel

For Hamedal C20, the current rate is different from the runtime rate,
snd_usb_endpoint stop and close endpoint to resetting rate.
if snd_usb_endpoint close the endpoint, sometimes usb will
 disconnect the device.

Signed-off-by: aichao <aichao@kylinos.cn>
---
 sound/usb/endpoint.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c
index 533919a28856..c19e420b1780 100644
--- a/sound/usb/endpoint.c
+++ b/sound/usb/endpoint.c
@@ -825,7 +825,9 @@ void snd_usb_endpoint_close(struct snd_usb_audio *chip,
 	usb_audio_dbg(chip, "Closing EP 0x%x (count %d)\n",
 		      ep->ep_num, ep->opened);
 
-	if (!--ep->iface_ref->opened)
+	if (!--ep->iface_ref->opened
+		&& (le16_to_cpu(chip->dev->descriptor.idVendor) != 0x0525)
+		&& (le16_to_cpu(chip->dev->descriptor.idProduct) != 0xa4ad))
 		endpoint_set_interface(chip, ep, false);
 
 	if (!--ep->opened) {
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-11-04  8:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-04  7:35 [PATCH] ALSA: usb-audio: fix Hamedal C20 usb camero disconnect issue aichao
2022-11-04  8:06 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox