From: Sylwester Nawrocki <snjw23@gmail.com>
To: devel@driverdev.osuosl.org, linux-media@vger.kernel.org
Cc: Piotr Chmura <chmooreck@poczta.onet.pl>,
Devin Heitmueller <dheitmueller@kernellabs.com>,
Mauro Carvalho Chehab <mchehab@redhat.com>,
Sylwester Nawrocki <snjw23@gmail.com>,
Stefan Richter <stefanr@s5r6.in-berlin.de>,
Greg KH <gregkh@suse.de>
Subject: [PATCH 00/17] Staging: Abilis Systems AS102 driver
Date: Mon, 31 Oct 2011 17:24:38 +0100 [thread overview]
Message-ID: <1320078295-3379-1-git-send-email-snjw23@gmail.com> (raw)
Hello,
I have collected most of patches for Abilis Systems AS102 driver
recently submitted by Piotr and I'm resending it as the following
series. There were some issues with some of the previous patches,
due to improper e-mail encoding and some of them refused to apply
properly. Hopefully there is no issues this time, I have also
pushed the patches to a public git, as indicated below.
This change set superseeds all previous as102 patches from Piotr
Chmura, we've agreed to prepare another series addressing the
remaining issues in order to move the driver out of staging.
So this change set is meant as an initial pull to staging/media.
If there are any issues with the patches related to submission
procedure, authorship, etc., please let us know.
The original author dates as in mercurial repository at
http://kernellabs.com/hg/~dheitmueller/v4l-dvb-as102-2/
has been preserved.
The patch set is based of off master branch at
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
It can be pulled from git://gitorious.org/linux-media/media_tree.git
The driver has been tested with PCTV picoStick (74e) DVB-T tuner.
--
Regards,
Sylwester
Devin Heitmueller (9):
staging: as102: Fix CodingStyle errors in file as102_drv.c
staging: as102: Fix CodingStyle errors in file as102_fw.c
staging: as102: Fix CodingStyle errors in file as10x_cmd.c
staging: as102: Fix CodingStyle errors in file as10x_cmd_stream.c
staging: as102: Fix CodingStyle errors in file as102_fe.c
staging: as102: Fix CodingStyle errors in file as102_usb_drv.c
staging: as102: Fix CodingStyle errors in file as10x_cmd_cfg.c
staging: as102: Add Elgato EyeTV DTT Deluxe
staging: as102: Properly handle multiple product names
Pierrick Hascoet (2):
staging: as102: Initial import from Abilis
staging: as102: Fix licensing oversight
Piotr Chmura (3):
staging: as102: Remove non-linux headers inclusion
staging: as102: Enable compilation
staging: as102: Add nBox Tuner Dongle support
Sylwester Nawrocki (3):
staging: as102: Convert the comments to kernel-doc style
staging: as102: Unconditionally compile code dependent on DVB_CORE
staging: as102: Remove conditional compilation based on kernel version
drivers/staging/Kconfig | 2 +
drivers/staging/Makefile | 1 +
drivers/staging/media/as102/Kconfig | 7 +
drivers/staging/media/as102/Makefile | 6 +
drivers/staging/media/as102/as102_drv.c | 351 ++++++++++++++
drivers/staging/media/as102/as102_drv.h | 141 ++++++
drivers/staging/media/as102/as102_fe.c | 603 ++++++++++++++++++++++++
drivers/staging/media/as102/as102_fw.c | 251 ++++++++++
drivers/staging/media/as102/as102_fw.h | 42 ++
drivers/staging/media/as102/as102_usb_drv.c | 478 +++++++++++++++++++
drivers/staging/media/as102/as102_usb_drv.h | 59 +++
drivers/staging/media/as102/as10x_cmd.c | 452 ++++++++++++++++++
drivers/staging/media/as102/as10x_cmd.h | 540 +++++++++++++++++++++
drivers/staging/media/as102/as10x_cmd_cfg.c | 215 +++++++++
drivers/staging/media/as102/as10x_cmd_stream.c | 223 +++++++++
drivers/staging/media/as102/as10x_handle.h | 58 +++
drivers/staging/media/as102/as10x_types.h | 198 ++++++++
17 files changed, 3627 insertions(+), 0 deletions(-)
create mode 100644 drivers/staging/media/as102/Kconfig
create mode 100644 drivers/staging/media/as102/Makefile
create mode 100644 drivers/staging/media/as102/as102_drv.c
create mode 100644 drivers/staging/media/as102/as102_drv.h
create mode 100644 drivers/staging/media/as102/as102_fe.c
create mode 100644 drivers/staging/media/as102/as102_fw.c
create mode 100644 drivers/staging/media/as102/as102_fw.h
create mode 100644 drivers/staging/media/as102/as102_usb_drv.c
create mode 100644 drivers/staging/media/as102/as102_usb_drv.h
create mode 100644 drivers/staging/media/as102/as10x_cmd.c
create mode 100644 drivers/staging/media/as102/as10x_cmd.h
create mode 100644 drivers/staging/media/as102/as10x_cmd_cfg.c
create mode 100644 drivers/staging/media/as102/as10x_cmd_stream.c
create mode 100644 drivers/staging/media/as102/as10x_handle.h
create mode 100644 drivers/staging/media/as102/as10x_types.h
--
1.7.4.1
next reply other threads:[~2011-10-31 16:25 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-31 16:24 Sylwester Nawrocki [this message]
2011-10-31 16:24 ` [PATCH 01/17] staging: as102: Initial import from Abilis Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 02/17] staging: as102: Fix CodingStyle errors in file as102_drv.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 03/17] staging: as102: Fix CodingStyle errors in file as102_fw.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 04/17] staging: as102: Fix CodingStyle errors in file as10x_cmd.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 05/17] staging: as102: Fix CodingStyle errors in file as10x_cmd_stream.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 06/17] staging: as102: Fix CodingStyle errors in file as102_fe.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 07/17] staging: as102: Fix CodingStyle errors in file as102_usb_drv.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 08/17] staging: as102: Fix CodingStyle errors in file as10x_cmd_cfg.c Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 09/17] staging: as102: Add Elgato EyeTV DTT Deluxe Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 10/17] staging: as102: Properly handle multiple product names Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 11/17] staging: as102: Fix licensing oversight Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 12/17] staging: as102: Remove non-linux headers inclusion Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 13/17] staging: as102: Convert the comments to kernel-doc style Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 14/17] staging: as102: Enable compilation Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 15/17] staging: as102: Add nBox Tuner Dongle support Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 16/17] staging: as102: Unconditionally compile code dependent on DVB_CORE Sylwester Nawrocki
2011-10-31 16:24 ` [PATCH 17/17] staging: as102: Remove conditional compilation based on kernel version Sylwester Nawrocki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1320078295-3379-1-git-send-email-snjw23@gmail.com \
--to=snjw23@gmail.com \
--cc=chmooreck@poczta.onet.pl \
--cc=devel@driverdev.osuosl.org \
--cc=dheitmueller@kernellabs.com \
--cc=gregkh@suse.de \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@redhat.com \
--cc=stefanr@s5r6.in-berlin.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.