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 40A4A2236EF; Thu, 12 Dec 2024 17:48:45 +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=1734025725; cv=none; b=AmLxfOE+D+zINtEENoGkp4cG/hzSpMLQMaI8IukCd1i3ENmbJIvGnSws3SOFPJVH//NW71k8yIrZyp9SqtGyupZeUUCBJq19heswSDDZAJWnTGSfhSdW0DlmH6kBD2eWLFMFTZ8KgKBaYIwGx4h+9ef+el3FsNwnZ5yzgVJXYlY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734025725; c=relaxed/simple; bh=vltvw4/EY6D/+vHvJng0uKU4DFozfDyHk1xRqMEcUjU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=lmbvrY1DInO6irE8h+CA9vZYXoZzPMzLvY8ez6c0sc6s/qnQEiAr81nuwegoLeegpGmb0476TCbFHPiMlF1MeVabwV1NpNFevtrnnsAtPj6ld3JTmaxRANfjVRiMW9hZMLWJcQTDu1S99xo6wRg39ybQttj5c6PtyjOsUW5KAqk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TxHmH8Mx; 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="TxHmH8Mx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9F0FAC4CED1; Thu, 12 Dec 2024 17:48:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734025725; bh=vltvw4/EY6D/+vHvJng0uKU4DFozfDyHk1xRqMEcUjU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TxHmH8MxQJ3AisOzAf21eGTA4orEQOYMpypEu7paO3Pb25Umg5nKe26g7GRwGBerq Eq+keymmKtyLctI08Mf+oHjB5YGthtabC9QYmEsgR6bDoYKPuFxx8WBRkz4ihZI3O5 GSAYWxs37BlkOt4grqAHXcm55qazjQLMk21B8J0o= 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.4 266/321] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Date: Thu, 12 Dec 2024 16:03:04 +0100 Message-ID: <20241212144240.489686237@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144229.291682835@linuxfoundation.org> References: <20241212144229.291682835@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.4-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 e123e74c549ed..49094b6b2a31e 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