From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1E3BB53365; Thu, 12 Dec 2024 17:07:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734023260; cv=none; b=JJdL7p7dNH/gfFkJYNQP3mKwAx8V7SYMFmXPAewlLSPz8Lkh6/IG0uMo2cFS1KtkT9jj2Zojbm111NFRXHwYiKUgKMlYsfe7z9g4+jJ4s1no+NetOThrbyTCRuKiPLAw/m9boanft1tN/Bv+ca+FyHbnqKCkSYY7Cvq/YhiJrCg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734023260; c=relaxed/simple; bh=TFHdEz1FCawD9U2k3a2f6SdxTqMYMDvOhe11l0F/HVQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=R5MfWg+KExr24CUyYEoDReKohoiNZhk04Mp2Aa7Qnn3Uew3tm2P9WIrFoVJzjXxB+gDDoxUgRodmrm0RyQ4MDHLY0V7OIx91zJ0rnNFSPtkJ9tCGMf4gZfLXb2eN4/9YZnmRmtG8WKbaN4MUnnUpYNXo71H+Z4OGYrlFp6NdFCE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=PwZ2VWf6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="PwZ2VWf6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3C9E9C4CECE; Thu, 12 Dec 2024 17:07:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734023259; bh=TFHdEz1FCawD9U2k3a2f6SdxTqMYMDvOhe11l0F/HVQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PwZ2VWf6hZsqnwwi0QnWrlcGCZCHVgcqkrBCFzssCalloc7Kj7og/Rv2lFnQMrQ+B r0pWbwPshFDlWWNP4y5LdlVpiru+vI/pB+NEMi95TTpnKk+OiH9lptjRO+lMNRcdu2 teRo7c2onLvxsZ/Zv8f/AUsmgiNnHNvmEccQS2N4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Rohan Barar , Hans Verkuil , Sasha Levin Subject: [PATCH 5.15 475/565] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Date: Thu, 12 Dec 2024 16:01:10 +0100 Message-ID: <20241212144330.528206192@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144311.432886635@linuxfoundation.org> References: <20241212144311.432886635@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Rohan Barar [ Upstream commit 61a830bc0ea69a05d8a4534f825c6aa618263649 ] Add Dexatek Technology Ltd USB Video Grabber 1d19:6108 to the cx231xx driver. This device is sold under the name "BAUHN DVD Maker (DK8723)" by ALDI in Australia. This device is similar to 1d19:6109, which is already included in cx231xx. Both video and audio capture function correctly after installing the patched cx231xx driver. Patch Changelog v1: - Initial submission. v2: - Fix SoB + Improve subject. v3: - Rephrase message to not exceed 75 characters per line. - Removed reference to external GitHub URL. Signed-off-by: Rohan Barar Signed-off-by: Hans Verkuil Signed-off-by: Sasha Levin --- drivers/media/usb/cx231xx/cx231xx-cards.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c index 92efe6c1f47ba..bda729b42d05f 100644 --- a/drivers/media/usb/cx231xx/cx231xx-cards.c +++ b/drivers/media/usb/cx231xx/cx231xx-cards.c @@ -994,6 +994,8 @@ const unsigned int cx231xx_bcount = ARRAY_SIZE(cx231xx_boards); /* table of devices that work with this driver */ struct usb_device_id cx231xx_id_table[] = { + {USB_DEVICE(0x1D19, 0x6108), + .driver_info = CX231XX_BOARD_PV_XCAPTURE_USB}, {USB_DEVICE(0x1D19, 0x6109), .driver_info = CX231XX_BOARD_PV_XCAPTURE_USB}, {USB_DEVICE(0x0572, 0x5A3C), -- 2.43.0