Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757170AbdLWP6g (ORCPT ); Sat, 23 Dec 2017 10:58:36 -0500 Received: from mail-wr0-f194.google.com ([209.85.128.194]:38295 "EHLO mail-wr0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752688AbdLWP6d (ORCPT ); Sat, 23 Dec 2017 10:58:33 -0500 X-Google-Smtp-Source: ACJfBosYcCsR7ntm1JiiCfMPLwYwbUCwx81Xte8EEBwYETWxMI9ox0KgWoP1ULhShfLthKBXiMzz4mDS/AvIgLKK1Qw= MIME-Version: 1.0 In-Reply-To: <68e5073e-bc9e-ddeb-edf0-21938d63f34a@maciej.szmigiero.name> References: <68e5073e-bc9e-ddeb-edf0-21938d63f34a@maciej.szmigiero.name> From: Philippe Ombredanne Date: Sat, 23 Dec 2017 16:57:51 +0100 Message-ID: Subject: Re: [PATCH v5 6/6] [media] cxusb: add analog mode support for Medion MD95700 To: "Maciej S. Szmigiero" Cc: Michael Krufky , Mauro Carvalho Chehab , Andy Walls , linux-kernel , Linux Media Mailing List , Hans Verkuil Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1323 Lines: 41 On Sat, Dec 23, 2017 at 12:19 AM, Maciej S. Szmigiero wrote: > This patch adds support for analog part of Medion 95700 in the cxusb > driver. > > What works: > * Video capture at various sizes with sequential fields, > * Input switching (TV Tuner, Composite, S-Video), > * TV and radio tuning, > * Video standard switching and auto detection, > * Radio mode switching (stereo / mono), > * Unplugging while capturing, > * DVB / analog coexistence, > * Raw BT.656 stream support. > > What does not work yet: > * Audio, > * VBI, > * Picture controls. > > Signed-off-by: Maciej S. Szmigiero > --- > drivers/media/usb/dvb-usb/Kconfig | 16 +- > drivers/media/usb/dvb-usb/Makefile | 3 + > drivers/media/usb/dvb-usb/cxusb-analog.c | 1914 ++++++++++++++++++++++++++++++ > drivers/media/usb/dvb-usb/cxusb.c | 2 - > drivers/media/usb/dvb-usb/cxusb.h | 106 ++ > 5 files changed, 2037 insertions(+), 4 deletions(-) > create mode 100644 drivers/media/usb/dvb-usb/cxusb-analog.c > index 000000000000..969d82b24f41 > --- /dev/null > +++ b/drivers/media/usb/dvb-usb/cxusb-analog.c > @@ -0,0 +1,1914 @@ > +// SPDX-License-Identifier: GPL-2.0+ Thanks! For the SPDX tags usage: Acked-by: Philippe Ombredanne