From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: pdickeybeta@gmail.com
Cc: linux-media@vger.kernel.org,
Devin Heitmueller <dheitmueller@kernellabs.com>
Subject: Re: [PATCH 0/2] Import PCTV-80e Drivers from Devin Heitmueller's Repository
Date: Thu, 26 Jan 2012 14:36:36 -0200 [thread overview]
Message-ID: <4F218114.7080300@redhat.com> (raw)
In-Reply-To: <1327131291-5174-1-git-send-email-pdickeybeta@gmail.com>
Em 21-01-2012 05:34, pdickeybeta@gmail.com escreveu:
> From: Patrick Dickey <pdickeybeta@gmail.com>
>
> This series of patches will import the drx39xxj(drx39xyj) drivers from Devin
> Heitmueller's HG Repository for the Pinnacle PCTV-80e USB Tuner.
>
> Patrick Dickey (2):
> import-pctv-80e-from-devin-heitmueller-hg-repository
> Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
> Signed-off-by: Patrick Dickey <pdickeybeta@gmail.com>
> import-pctv-80e-from-devin-heitmueller-hg-repository
> Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
> Signed-off-by: Patrick Dickey <pdickeybeta@gmail.com>
Patch 0 never arrived. Is there a place where I could get it?
If the patch is from some Devin's tree, maybe I can just get it there.
>
> Documentation/video4linux/CARDLIST.em28xx | 1 +
> .../staging/media/dvb/frontends/drx39xyj/Kconfig | 7 +
> .../staging/media/dvb/frontends/drx39xyj/Makefile | 3 +
> .../media/dvb/frontends/drx39xyj/bsp_host.h | 80 +
> .../staging/media/dvb/frontends/drx39xyj/bsp_i2c.h | 217 +
> .../media/dvb/frontends/drx39xyj/bsp_tuner.h | 215 +
> .../media/dvb/frontends/drx39xyj/bsp_types.h | 229 +
> .../media/dvb/frontends/drx39xyj/drx39xxj.c | 457 +
> .../media/dvb/frontends/drx39xyj/drx39xxj.h | 40 +
> .../media/dvb/frontends/drx39xyj/drx39xxj_dummy.c | 134 +
> .../media/dvb/frontends/drx39xyj/drx_dap_fasi.c | 675 +
> .../media/dvb/frontends/drx39xyj/drx_dap_fasi.h | 268 +
> .../media/dvb/frontends/drx39xyj/drx_driver.c | 1600 ++
> .../media/dvb/frontends/drx39xyj/drx_driver.h | 2588 +++
> .../dvb/frontends/drx39xyj/drx_driver_version.h | 82 +
> .../staging/media/dvb/frontends/drx39xyj/drxj.c |16758 ++++++++++++++++++++
> .../staging/media/dvb/frontends/drx39xyj/drxj.h | 730 +
> .../media/dvb/frontends/drx39xyj/drxj_map.h |15359 ++++++++++++++++++
> .../staging/media/dvb/frontends/drx39xyj/drxj_mc.h | 3939 +++++
> .../media/dvb/frontends/drx39xyj/drxj_mc_vsb.h | 744 +
> .../media/dvb/frontends/drx39xyj/drxj_mc_vsbqam.h | 1437 ++
> .../media/dvb/frontends/drx39xyj/drxj_options.h | 65 +
> 22 files changed, 45628 insertions(+), 0 deletions(-)
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/Kconfig
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/Makefile
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/bsp_host.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/bsp_i2c.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/bsp_tuner.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/bsp_types.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx39xxj.c
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx39xxj.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx39xxj_dummy.c
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx_dap_fasi.c
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx_dap_fasi.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx_driver.c
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx_driver.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drx_driver_version.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj.c
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj_map.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj_mc.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj_mc_vsb.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj_mc_vsbqam.h
> create mode 100644 drivers/staging/media/dvb/frontends/drx39xyj/drxj_options.h
>
next prev parent reply other threads:[~2012-01-26 16:36 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-21 7:34 [PATCH 0/2] Import PCTV-80e Drivers from Devin Heitmueller's Repository pdickeybeta
2012-01-21 7:34 ` [PATCH 2/2] import-pctv-80e-from-devin-heitmueller-hg-repository # HG changeset patch # User Devin Heitmueller <dheitmueller@kernellabs.com> # Date 1278279731 14400 # Node ID 30c6512030acb8dea04c653b40340f6038d57367 # Parent c119f08c4dd266f6024cde6b5e660c7d32a0cbc1 drx39xyj: put under 3-clause BSD license pdickeybeta
2012-01-26 16:36 ` Mauro Carvalho Chehab [this message]
2012-01-27 0:39 ` [PATCH 0/2] Import PCTV-80e Drivers from Devin Heitmueller's Repository Patrick Dickey
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=4F218114.7080300@redhat.com \
--to=mchehab@redhat.com \
--cc=dheitmueller@kernellabs.com \
--cc=linux-media@vger.kernel.org \
--cc=pdickeybeta@gmail.com \
/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.