public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] Added ID 1d19:6108 Dexatek Technology Ltd. Video Grabber
       [not found] <20240926235048.283608-2-rohan.barar@gmail.com>
@ 2024-09-30 13:05 ` Rohan Barar
  2024-09-30 13:14   ` Mauro Carvalho Chehab
  2024-09-30 23:25 ` [PATCH v2] media: cx231xx: Add support for a new 'Dexatek' device (USB ID: 1d19:6108) Rohan Barar
  1 sibling, 1 reply; 4+ messages in thread
From: Rohan Barar @ 2024-09-30 13:05 UTC (permalink / raw)
  To: sakari.ailus, mchehab, hverkuil, gregkh, hdegoede, andy,
	olli.salonen
  Cc: linux-media, linux-kernel, Rohan Barar

Dear all,

I am following up on my patch submission for the `cx231xx` driver, which adds support for the Dexatek Technology Ltd Video Grabber (USB Device ID: 1d19:6108).

The patch is a straightforward two-line addition and has been thoroughly tested.

For evidence of the device functioning correctly after applying the patch, please refer to: https://github.com/KernelGhost/TapeShift

I would greatly appreciate any feedback or review at your earliest convenience. Thank you!

Best regards,  

Rohan Barar

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

* Re: [PATCH] Added ID 1d19:6108 Dexatek Technology Ltd. Video Grabber
  2024-09-30 13:05 ` [PATCH] Added ID 1d19:6108 Dexatek Technology Ltd. Video Grabber Rohan Barar
@ 2024-09-30 13:14   ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2024-09-30 13:14 UTC (permalink / raw)
  To: Rohan Barar
  Cc: sakari.ailus, mchehab, hverkuil, gregkh, hdegoede, andy,
	olli.salonen, linux-media, linux-kernel

Em Mon, 30 Sep 2024 23:05:11 +1000
Rohan Barar <rohan.barar@gmail.com> escreveu:

> Dear all,
> 
> I am following up on my patch submission for the `cx231xx` driver, which adds support for the Dexatek Technology Ltd Video Grabber (USB Device ID: 1d19:6108).
> 
> The patch is a straightforward two-line addition and has been thoroughly tested.
> 
> For evidence of the device functioning correctly after applying the patch, please refer to: https://github.com/KernelGhost/TapeShift
> 
> I would greatly appreciate any feedback or review at your earliest convenience. Thank you!

Your patch is tracked here:

https://patchwork.linuxtv.org/project/linux-media/list/?series=&submitter=rohan+barar&state=&q=&archive=&delegate=

And media CI detected some troubles on it:

https://gitlab.freedesktop.org/linux-media/users/patchwork/-/pipelines/1279069/test_report?job_name=media-patchstyle

It detected problems with your SoB and with the e-mail subject.

The e-mail subject should be something similar to:

	media: cx231xx: Add support for a new Dexatek device

Please check the process about how to submit a patch at the Linux
documentation and, in particular, how we handle stuff on media at:

	https://www.kernel.org/doc/html/latest/driver-api/media/maintainer-entry-profile.html

Please fix the patch and submit a new version. 

Please notice that this is a busy subsystem. We may take some time to
review your work, but, provided that it is tracked on patchwork,
we'll get there ;-)

Regards,
Mauro


Thanks,
Mauro

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

* [PATCH v2] media: cx231xx: Add support for a new 'Dexatek' device (USB ID: 1d19:6108)
       [not found] <20240926235048.283608-2-rohan.barar@gmail.com>
  2024-09-30 13:05 ` [PATCH] Added ID 1d19:6108 Dexatek Technology Ltd. Video Grabber Rohan Barar
@ 2024-09-30 23:25 ` Rohan Barar
  2024-10-03  9:40   ` [PATCH v3] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Rohan Barar
  1 sibling, 1 reply; 4+ messages in thread
From: Rohan Barar @ 2024-09-30 23:25 UTC (permalink / raw)
  To: mchehab, hverkuil; +Cc: linux-media, linux-kernel, Rohan Barar

This patch adds support for a Dexatek Technology Ltd Video Grabber (USB ID: 1d19:6108) to the `cx231xx` driver.

This device, sold under the name "BAUHN DVD Maker (DK8723)" by ALDI in Australia, is similar to the device with USB ID `1d19:6109`.

The latter is already supported in the `cx231xx` driver.

Both video and audio capture have been tested and confirmed to work after compiling, signing, and loading the patched driver.

For evidence of the device functioning correctly, refer to: https://github.com/KernelGhost/TapeShift

Signed-off-by: Rohan Barar <rohan.barar@gmail.com>

---
 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 92efe6c1f..bda729b42 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.46.1

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

* [PATCH v3] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108
  2024-09-30 23:25 ` [PATCH v2] media: cx231xx: Add support for a new 'Dexatek' device (USB ID: 1d19:6108) Rohan Barar
@ 2024-10-03  9:40   ` Rohan Barar
  0 siblings, 0 replies; 4+ messages in thread
From: Rohan Barar @ 2024-10-03  9:40 UTC (permalink / raw)
  To: mchehab, hverkuil; +Cc: linux-media, linux-kernel, Rohan Barar

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 <rohan.barar@gmail.com>

---
 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 92efe6c1f..bda729b42 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.46.1

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

end of thread, other threads:[~2024-10-03  9:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20240926235048.283608-2-rohan.barar@gmail.com>
2024-09-30 13:05 ` [PATCH] Added ID 1d19:6108 Dexatek Technology Ltd. Video Grabber Rohan Barar
2024-09-30 13:14   ` Mauro Carvalho Chehab
2024-09-30 23:25 ` [PATCH v2] media: cx231xx: Add support for a new 'Dexatek' device (USB ID: 1d19:6108) Rohan Barar
2024-10-03  9:40   ` [PATCH v3] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Rohan Barar

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