From patchwork Sun Sep 2 23:30:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philipp Dreimann X-Patchwork-Id: 1398181 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 20BA4DF283 for ; Sun, 2 Sep 2012 23:31:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755028Ab2IBXbo (ORCPT ); Sun, 2 Sep 2012 19:31:44 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:33541 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754827Ab2IBXbo (ORCPT ); Sun, 2 Sep 2012 19:31:44 -0400 Received: by wibhr14 with SMTP id hr14so3437275wib.1 for ; Sun, 02 Sep 2012 16:31:42 -0700 (PDT) Received: by 10.180.83.66 with SMTP id o2mr19085329wiy.14.1346628702603; Sun, 02 Sep 2012 16:31:42 -0700 (PDT) Received: from pd-x220.fritz.box (ip-37-201-96-135.unitymediagroup.de. [37.201.96.135]) by mx.google.com with ESMTPS id el6sm15977521wib.8.2012.09.02.16.31.40 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 02 Sep 2012 16:31:41 -0700 (PDT) From: Philipp Dreimann To: linux-media@vger.kernel.org, Antti Palosaari , Thomas Mair Cc: Philipp Dreimann Subject: [PATCH] Add the usb id of the Trekstor DVB-T Stick Terres 2.0 Date: Mon, 3 Sep 2012 01:30:54 +0200 Message-Id: <1346628654-3348-1-git-send-email-philipp@dreimann.net> X-Mailer: git-send-email 1.7.9.5 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org It needs the e4000 tuner driver. Signed-off-by: Philipp Dreimann Acked-by: Antti Palosaari --- drivers/media/dvb-core/dvb-usb-ids.h | 1 + drivers/media/usb/dvb-usb-v2/rtl28xxu.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/drivers/media/dvb-core/dvb-usb-ids.h b/drivers/media/dvb-core/dvb-usb-ids.h index 26c4481..fed6dcd 100644 --- a/drivers/media/dvb-core/dvb-usb-ids.h +++ b/drivers/media/dvb-core/dvb-usb-ids.h @@ -82,6 +82,7 @@ #define USB_PID_AFATECH_AF9035_1003 0x1003 #define USB_PID_AFATECH_AF9035_9035 0x9035 #define USB_PID_TREKSTOR_DVBT 0x901b +#define USB_PID_TREKSTOR_TERRES_2_0 0xC803 #define USB_VID_ALINK_DTU 0xf170 #define USB_PID_ANSONIC_DVBT_USB 0x6000 #define USB_PID_ANYSEE 0x861f diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c index 88b5ea1..d0d23f2 100644 --- a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c +++ b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c @@ -1236,6 +1236,8 @@ static const struct usb_device_id rtl28xxu_id_table[] = { &rtl2832u_props, "NOXON DAB/DAB+ USB dongle", NULL) }, { DVB_USB_DEVICE(USB_VID_REALTEK, 0x2838, &rtl2832u_props, "Realtek RTL2832U reference design", NULL) }, + { DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_TREKSTOR_TERRES_2_0, + &rtl2832u_props, "Trekstor DVB-T Stick Terres 2.0", NULL) }, { } }; MODULE_DEVICE_TABLE(usb, rtl28xxu_id_table);