linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rtl28xxu: add [1b80:d3b0] Sveon STV21
@ 2014-06-12  6:22 Sebastian Kemper
  2014-06-15  9:19 ` Antti Palosaari
  0 siblings, 1 reply; 2+ messages in thread
From: Sebastian Kemper @ 2014-06-12  6:22 UTC (permalink / raw)
  To: linux-media

Added Sveon STV21 device based on Realtek RTL2832U and FC0013 tuner

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
---

diff --git a/drivers/media/dvb-core/dvb-usb-ids.h b/drivers/media/dvb-core/dvb-usb-ids.h
index 11d2bea..b518ada 100644
--- a/drivers/media/dvb-core/dvb-usb-ids.h
+++ b/drivers/media/dvb-core/dvb-usb-ids.h
@@ -363,6 +363,7 @@
 #define USB_PID_TVWAY_PLUS				0x0002
 #define USB_PID_SVEON_STV20				0xe39d
 #define USB_PID_SVEON_STV20_RTL2832U			0xd39d
+#define USB_PID_SVEON_STV21				0xd3b0
 #define USB_PID_SVEON_STV22				0xe401
 #define USB_PID_SVEON_STV22_IT9137			0xe411
 #define USB_PID_AZUREWAVE_AZ6027			0x3275
diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
index a676e44..5f8ff0f 100644
--- a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
+++ b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
@@ -1541,6 +1541,8 @@ static const struct usb_device_id rtl28xxu_id_table[] = {
 		&rtl2832u_props, "Peak DVB-T USB", NULL) },
 	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV20_RTL2832U,
 		&rtl2832u_props, "Sveon STV20", NULL) },
+	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV21,
+		&rtl2832u_props, "Sveon STV21", NULL) },
 	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV27,
 		&rtl2832u_props, "Sveon STV27", NULL) },
 

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

* Re: [PATCH] rtl28xxu: add [1b80:d3b0] Sveon STV21
  2014-06-12  6:22 [PATCH] rtl28xxu: add [1b80:d3b0] Sveon STV21 Sebastian Kemper
@ 2014-06-15  9:19 ` Antti Palosaari
  0 siblings, 0 replies; 2+ messages in thread
From: Antti Palosaari @ 2014-06-15  9:19 UTC (permalink / raw)
  To: linux-media

Acked-by: Antti Palosaari <crope@iki.fi>
Reviewed-by: Antti Palosaari <crope@iki.fi>

Mauro, please pick that from patchwork, I am not going to PULL request it.


regards
Antti


On 06/12/2014 09:22 AM, Sebastian Kemper wrote:
> Added Sveon STV21 device based on Realtek RTL2832U and FC0013 tuner
>
> Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
> ---
>
> diff --git a/drivers/media/dvb-core/dvb-usb-ids.h b/drivers/media/dvb-core/dvb-usb-ids.h
> index 11d2bea..b518ada 100644
> --- a/drivers/media/dvb-core/dvb-usb-ids.h
> +++ b/drivers/media/dvb-core/dvb-usb-ids.h
> @@ -363,6 +363,7 @@
>   #define USB_PID_TVWAY_PLUS				0x0002
>   #define USB_PID_SVEON_STV20				0xe39d
>   #define USB_PID_SVEON_STV20_RTL2832U			0xd39d
> +#define USB_PID_SVEON_STV21				0xd3b0
>   #define USB_PID_SVEON_STV22				0xe401
>   #define USB_PID_SVEON_STV22_IT9137			0xe411
>   #define USB_PID_AZUREWAVE_AZ6027			0x3275
> diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
> index a676e44..5f8ff0f 100644
> --- a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
> +++ b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
> @@ -1541,6 +1541,8 @@ static const struct usb_device_id rtl28xxu_id_table[] = {
>   		&rtl2832u_props, "Peak DVB-T USB", NULL) },
>   	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV20_RTL2832U,
>   		&rtl2832u_props, "Sveon STV20", NULL) },
> +	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV21,
> +		&rtl2832u_props, "Sveon STV21", NULL) },
>   	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV27,
>   		&rtl2832u_props, "Sveon STV27", NULL) },
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>


-- 
http://palosaari.fi/

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

end of thread, other threads:[~2014-06-15  9:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-12  6:22 [PATCH] rtl28xxu: add [1b80:d3b0] Sveon STV21 Sebastian Kemper
2014-06-15  9:19 ` Antti Palosaari

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).