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 E9F8D4F218; Thu, 12 Dec 2024 15:41:42 +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=1734018103; cv=none; b=XOP+Xy4L4fYxGaIs2Wx1g4f+XwGqYfXd32Sgb1jC1MHmlcPcq38z4bRY0hWCIfNFfqr/fErdTNFekbcS6rFMKYRVhzt4Ge4DxMtseFutjn1OWdaqkqe9t+9ahrCdlTj05hdFe5Hy4HmUNJf/6WKBx9kxIJO1Fl1u/9u5MnBfW08= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734018103; c=relaxed/simple; bh=zML1QE2RdrwPwoZ6V8ku3yy2fi0lywvSVydO7Kj20Jw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RFY4CcPk1KQgCBI7Rvwlvb2AvYtJO4K+ibHXXdNVFk92t3aCSItjMtq+5gLhDvkriE+YXc0eGmy03lW2nDtruPMLPFFNDhFqZ4EmwtWNsSEvCHwCNNooj6bN0WrXqBLFSQooqGUlLwiXegNKEDYypa5ZfHG0lK268otib8T3GXc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VfKp7hYH; 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="VfKp7hYH" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5A98FC4CECE; Thu, 12 Dec 2024 15:41:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1734018102; bh=zML1QE2RdrwPwoZ6V8ku3yy2fi0lywvSVydO7Kj20Jw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VfKp7hYH0eD0g2Nyy6R22YCENYBwibBV5NP3I6s1PGvdczxuybZs+HaxpfN9WYb7r 5adjiJnjf3eXbtzaABlxWigR5l9314sCNCWFTPdaHimhfK74Bswy7DhAgd0WBKePuL OJSSnslFtZAV/LynRD5W18e9YrUFoxDbPM0RONBo= 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 6.6 199/356] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Date: Thu, 12 Dec 2024 15:58:38 +0100 Message-ID: <20241212144252.484888369@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241212144244.601729511@linuxfoundation.org> References: <20241212144244.601729511@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 6.6-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