On Mon, 10 Oct 2016 06:30:35 -0300
Mauro Carvalho Chehab wrote:
> > drivers/media/usb/dvb-usb/dib0700_devices.c | 10 +++---
> > 1 file changed, 3 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/media/usb/dvb-usb/dib0700_devices.c
> > b/drivers/media/usb/dvb-usb/dib0700_devices.c
uf, event, state);
> +
> + if (buf[0] != 0)
> + deb_info("key: %*ph\n", 5, buf);
> +
> + kfree(buf);
> +
> return 0;
> }
> EXPORT_SYMBOL(dibusb_rc_query);
> diff --git a/drivers/media/usb/dvb-usb/dibusb.h
> b/drivers/media/usb/dvb-usb/d
}
>
> protocol = RC_TYPE_NEC;
> - scancode = RC_SCANCODE_NEC(key[3-2], key[3-3]);
> + scancode = RC_SCANCODE_NEC(st->buf[3 - 2], st->buf[3
> - 3]); toggle = 0;
> break;
>
> default:
> /* RC-5 proto
0:
> - param.bandwidth = 7;
> + param->bandwidth = 7;
> break;
> case 600:
> - param.bandwidth = 6;
> + param->bandwidth = 6;
> break;
> }
>
> - err = dvb_us
ex 527ff7905e15..18acda19527a
> 100644 --- a/drivers/media/usb/dvb-usb/cxusb.h
> +++ b/drivers/media/usb/dvb-usb/cxusb.h
> @@ -28,10 +28,15 @@
> #define CMD_ANALOG0x50
> #define CMD_DIGITAL 0x51
>
> +/* Max transfer size done by I2C transfer functions */
>
dvb_usb_device *d, u32 *event, int *state) }
>
> /* hack to pass checksum on the custom field */
> - key[2] = ~key[1];
> - dvb_usb_nec_rc_key_to_event(d, key, event, state);
> - if (key[0] != 0) {
> + st->data[2] = ~st->data[1];
> + dvb_usb_nec_rc_key_to_event
/read request */
> @@ -299,6 +319,11 @@ static int dib0700_i2c_xfer_legacy(struct
> i2c_adapter *adap, break;
> }
>
> + if (msg[i + 1].len > sizeof(st->buf)) {
> + deb_info("i2c xfer buffer to small
> for %d\n",
> +
usb/digitv.h index 908c09f4966b..cf104689bdff
> 100644 --- a/drivers/media/usb/dvb-usb/digitv.h
> +++ b/drivers/media/usb/dvb-usb/digitv.h
> @@ -6,6 +6,9 @@
>
> struct digitv_state {
> int is_nxt6000;
> +
> +unsigned char sndbuf[7];
> +unsigned char rcvbuf[7
ers = 1,
> .adapter = {
> {
> @@ -240,6 +259,8 @@ static struct dvb_usb_device_properties
> wt220u_fc_properties = { .usb_ctrl = CYPRESS_FX2,
> .firmware = "dvb-usb-wt220u-fc03.fw",
>
> + .size_of_priv = sizeof(struct dtt200u_state),
&g
> to c: %02x d: %02x toggle: %d\n",
> +buf[1], buf[2], buf[3], custom, data,
> toggle);
> for (i = 0; i <
> ARRAY_SIZE(rc_map_haupp_table); i++) { if
> (rc5_data(&rc_map_haupp_table[i]) == data && @@ -117,6 +124,
;%s: read: %2d: %*ph: ", __func__, ret, 3, rx);
> - for (i = 0; (i < rx[3]) && ((i+3) <
> PCTV_ANSWER_LEN); i++)
> - info(" %02x", rx[i+3]);
> + info("%s: read: %2d: %*ph: ", __func__, ret, 3,
> state->d
atus: %d, ", b[0]);
> @@ -154,7 +158,9 @@ static int technisat_usb2_i2c_access(struct
> usb_device *udev,
> deb_i2c("\n");
>
> - return 0;
> +err:
> + kfree(b);
> + return ret;
> }
>
> static int technisat_usb2_i2c_xfer(struct i2c_adapter *adap, struct
> i2c_msg *msg,
Reviewed-By: Patrick Boettcher
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi, der Herr Hofrat ;-)
On Sat, 8 Oct 2016 13:57:14 +
Nicholas Mc Guire wrote:
> - lo6 |= (1 << 2) | 2;
> - else
> - lo6 |= (1 << 2) | 1;
> + lo6 |= (1 << 2) | 2;//SigmaDelta and Dither
> + else {
> + if (stat
Hi,
On Tue, 4 Oct 2016 15:26:28 +0200 (CEST)
Jiri Kosina wrote:
> On Tue, 4 Oct 2016, Jörg Otte wrote:
>
> > With kernel 4.8.0-01558-g21f54dd I get thousands of
> > "dvb-usb: bulk message failed: -11 (1/0)"
> > messages in the logs and the DVB adapter is not working.
> >
> > It tourned out the
On Wed, 5 Oct 2016 09:26:29 +0200 (CEST)
Jiri Kosina wrote:
> On Tue, 4 Oct 2016, Jörg Otte wrote:
>
> > Thanks for the quick response.
> > Drivers are:
> > dvb_core, dvb_usb, dbv_usb_cynergyT2
>
> This dbv_usb_cynergyT2 is not from Linus' tree, is it? I don't seem
> to be able to find it, an
Hi Mauro,
On Fri, 24 Jun 2016 12:31:54 -0300
Mauro Carvalho Chehab wrote:
> Those tables are currently unused, so comment them out:
We actually could remove these tables. It is very, very unlikely that
this device will ever be used for S-Band in the future.
Extremely unlikely.
best regards,
--
On Thu, 12 Nov 2015 15:41:50 -0200 Mauro Carvalho Chehab
wrote:
> > Is putting the patch in an attachment OK?
>
> No, because it doesn't make easy for people to reply with comments.
Except if you are using claws. With which you can select text in a text
attachment and click the reply button and
On Tue, 7 Jul 2015 18:51:16 +0200 (SST) Peter Fassberg
wrote:
> On Tue, 7 Jul 2015, Patrick Boettcher wrote:
>
> > Might be the RF frequency that is truncated on 32bit platforms
> > somewhere. That could explain that there is no crash but simply not
> > tuning.
>
&
On Tue, 7 Jul 2015 18:25:41 +0200
Patrick Boettcher wrote:
> > [ 301.275434] si2168 1-0064: firmware version: 4.0.4 [ 301.284625] si2157
> > 2-0060: found a 'Silicon Labs Si2157-A30'
> > [ 301.340643] si2157 2-0060: firmware version: 3.0.5
> Can you ea
On Tue, 7 Jul 2015 17:38:25 +0200 (SST)
Peter Fassberg wrote:
> On Tue, 7 Jul 2015, Patrick Boettcher wrote:
>
> >> I installed the 32-bit version of the same OS (Debian 8, kernel 3.16.0,
> >> i386) and the result was a bit suprising.
> >>
> >&
On Tue, 7 Jul 2015 17:33:01 +0200 (SST) Peter Fassberg
wrote:
> On Sun, 5 Jul 2015, Patrick Boettcher wrote:
>
> > Your Intel platform is 64bit. I don't know the TripleStick nor the SI or
> > the EM28xx-driver but _maybe_ there is a problem with it on 32-bit
> > p
Hi,
On Sat, 4 Jul 2015 13:07:17 +0200 (SST)
Peter Fassberg wrote:
> Hi all!
>
> I'm trying to get PCTV TripleStick 292e working in a Raspberry Pi B+
> environment.
>
> I have no problem getting DVB-T to work, but I can't tune to any
> DVB-T2 channels. I have tried with three different kernels:
Hi all,
On Mon, 01 Jun 2015 09:08:03 +0100 Jemma Denson
wrote:
> Yes, that might work, I hadn't though of just swapping them around -
> thanks. It would however assume that the 0x PAT feed is requested
> early on enough that it always sits within the bank of 32 and nothing
> else is too bo
Hi Jemma,
On Fri, 22 May 2015 21:28:27 +0100 Jemma Denson
wrote:
> Now that b2c2 has an option to allow us to do so, turn off the
> flexcop receive stream when we turn off mpeg output whilst tuning.
Does this not fix (and your '[PATCH 2/4]') the problem of receiving
PAT from the previously tune
On Wed, 20 May 2015 09:07:27 -0300 Mauro Carvalho Chehab
wrote:
> Hi Patrick/Jemma,
>
> Em Wed, 20 May 2015 12:46:45 +0100
> Jemma Denson escreveu:
>
> > On 20/05/15 09:05, Patrick Boettcher wrote:
> > > Hi Mauro,
> > >
> > > This is an updated
x24120_init() as static
cx24120: constify static data
Patrick Boettcher (6):
[media] cx24120: minor checkpatch fixes
cx24120: i2c-max-write-size is now configurable
[media] MAINTAINERS: add cx24120-maintainer
cx24120: fix codingstyle issue first round
cx24120: fix s
Hi Mauro,
On Tue, 19 May 2015 08:23:36 -0300 Mauro Carvalho Chehab
wrote:
> As reported by smatch:
> drivers/media/dvb-frontends/cx24120.c: In function 'cx24120_message_send':
> drivers/media/dvb-frontends/cx24120.c:368:6: warning: variable 'ret' set but
> not used [-Wunused-but-set-variable]
On Tue, 19 May 2015 12:25:19 +0100 Jemma Denson
wrote:
> On 19/05/15 11:57, Mauro Carvalho Chehab wrote:
> >
> >> The only thing left now is moving UCB & BER over to DVBv5 stats - we
> >> haven't got anything close to any specs for this demod so I'm struggling
> >> to work out how to handle the c
DRIVER
+M: Jemma Denson
+M: Patrick Boettcher
+L: linux-media@vger.kernel.org
+W: http://linuxtv.org/
+Q: http://patchwork.linuxtv.org/project/linux-media/list/
+S: Maintained
+F: drivers/media/dvb-frontends/cx24120*
+
CX88 VIDEO4LINUX DRIVER
M: Mauro Carvalho
Hi Mauro,
On Thu, 14 May 2015 18:40:40 -0300 Mauro Carvalho Chehab
wrote:
> Em Wed, 29 Apr 2015 08:55:26 -0300
> Mauro Carvalho Chehab escreveu:
>
> > Em Wed, 29 Apr 2015 13:35:01 +0200
> > Patrick Boettcher escreveu:
> >
> > > Hi Mauro,
> > >
&
Hi Mauro,
On Mon, 27 Apr 2015 21:40:22 -0300 Mauro Carvalho Chehab
wrote:
> > Could we send an additional patch for coding-style or would you prefer
> > a new patch which has everything inside? This would maintain the
> > author-attribution of the initial commit.
>
> An additional patch is fine.
gt; Em Mon, 20 Apr 2015 09:27:20 +0200
> Patrick Boettcher escreveu:
>
> > Hi Mauro,
> >
> > Would you please pull the following two patches for finally
> > mainlining the Technisat SkyStar S2 (and its frontend cx24120).
> >
> > Ideally for 4.1, but I as
Hi Mauro,
On Thu, 23 Apr 2015 07:40:46 -0300 Mauro Carvalho Chehab
wrote:
> > What about demod-diversity: demods of some manufacturers can be
> > used to combine their demodulated symbols and, due to their
> > different antennas and RF-paths, improve the overall reception
> > quality.
> >
> > If
Hi Mauro,
I could not participate at your Summit, but may have an input to the
media-controller in DVB - see below.
On Wed, 22 Apr 2015 15:31:46 -0300 Mauro Carvalho Chehab
wrote:
> This is the first draft for the Linux Media Summit Report.
>
> Please note that the items 3 to 5 are not in goo
Hi Johannes,
On Mon, 20 Apr 2015 10:20:47 +0200 Johannes Stezenbach
wrote:
> (add Mauro)
>
> On Sun, Apr 19, 2015 at 11:19:43PM +0200, Patrick Boettcher wrote:
> > On Fri, 17 Apr 2015 11:06:30 +0200
> > Patrick Boettcher wrote:
> > > http://git.linuxtv.org/cgit.
mma Denson (1):
[media] Add support for TechniSat Skystar S2
Patrick Boettcher (1):
[media] cx24120: minor checkpatch fixes
drivers/media/common/b2c2/Kconfig|1 +
drivers/media/common/b2c2/flexcop-fe-tuner.c | 51 +-
drivers/media/common/b2c2/flexcop-misc.c |1
Hi Jemma,
On Fri, 17 Apr 2015 12:47:50 +0100 Jemma Denson
wrote:
> > To prepare an integration into 4.2 (or at least 4.3) I suggest
> > using my media_tree on linuxtv.org .
> >
> > http://git.linuxtv.org/cgit.cgi/pb/media_tree.git/ cx24120-v2
> >
> > I added a checkpatch-patch on top of it. If y
Hi,
On Fri, 17 Apr 2015 11:06:30 +0200
Patrick Boettcher wrote:
> http://git.linuxtv.org/cgit.cgi/pb/media_tree.git/ cx24120-v2
Jannis pointed out, that my repository on linuxtv.org was not
fetchable...
I put one onto github, this should work:
https://github.com/pboettch/linux.git cx24120
Hi Jemma,
Thanks for taking this one. I had this on my list for years.
On Mon, 13 Apr 2015 07:32:15 +0100 Jemma Denson
wrote:
> Oh, I was doing this the wrong way then. I did have some preamble to
> this but it seems to have been stripped.
>
> Anyway, this patch adds support for the Technisat
On Fri, 10 Oct 2014 12:09:12 +0200
JPT wrote:
> Hi Patrick,
>
> Am 09.10.2014 um 17:26 schrieb Patrick Boettcher:
> > Hi Jan,
> >
> >> What exactly do the i2c-errors mean?
> >
> > I can't tell you exactly what happens in the device, but I can te
Hi Jan,
On Tue, 07 Oct 2014 19:27:07 +0200 JPT wrote:
> 01:14:52 VDR fails to start because there is no recording device.
>
> I was able to get things running by unloading the modules and loading
> them again. After that I started VDR.
>
> What exactly do the i2c-errors mean? Find attached a
>
Hi Mauro,
I like all of your changes.
Acked-By: Patrick Boettcher
regards,
Patrick.
On Fri, 4 Jul 2014 14:15:26 -0300 Mauro Carvalho Chehab
wrote:
> While testing two dvb devices:
> - Mygica S870 (dib8096 based);
> - Pixelview PV-D231U (RN-F)
>
> I notic
Hi David,
On Thursday 27 March 2014 22:40:41 David Härdeman wrote:
> On Thu, Mar 27, 2014 at 01:07:28PM +0100, David Härdeman wrote:
> >Hi Patrick,
> >
> >a quick question regarding the dib0700 driver:
>
> >in ./media/usb/dvb-usb/dib0700_core.c the RC RX packet is defined as:
> ...
>
> >The NEC
Hi (sending again due to HTML-nonsense in Mail),
On Friday 30 August 2013 10:23:24 Chen Gang wrote:
> DVB_B2C2_FLEXCOP_USB need depend on PCI, or can not pass compiling with
> allmodconfig for h8300.
>
> The related error:
>
> drivers/media/usb/b2c2/flexcop-usb.c: In function
> 'flexcop_usb_tr
On Monday 03 June 2013 17:14:18 Luca Olivetti wrote:
> >> So, what's the real status of diversity support?
> >
> > Nobody knows?
>
> I'm not easily discouraged :-) so here's the question again: is there
> some dvb-t usb stick (possibly available on the EU market) with
> diversity support under Li
On Tuesday 04 June 2013 13:17:49 Antti Palosaari wrote:
> On 06/04/2013 10:29 AM, Luca Olivetti wrote:
> > Al 04/06/13 01:17, En/na Antti Palosaari ha escrit:
> >>> I'm not easily discouraged :-) so here's the question again: is there
> >>> some dvb-t usb stick (possibly available on the EU market)
] dib8000: enhancement
[media] dib7000p: enhancement
[media] dib0090: enhancement
[media] dib8096: enhancement
[media] dib7090p: remove the support for the dib7090E
[media] dib7090p: improve the support of the dib7090 and dib7790
Patrick Boettcher (1):
[media] dib8000
On Wednesday 12 December 2012 13:20:46 Fricke, Silvio wrote:
> Hi,
>
> We have developed a prototype of an i.mx6 CPU-module connected to an
> ANALOGIX AN9804 chip. This is a DisplayPort/HDMI-Transmitter [1]. This is
> a converter for simple rgb-signals to DisplayPort and HDMI signals. The
> ANX is
Hi Richard,
I can maybe answer some of your questions with semi-complete answers in the
hope it helps you further.
On Saturday 17 November 2012 13:35:18 Richard wrote:
> struct dvb_demux :
> This has a start_feed and a stop feed. What feed is this? ... the
> RAW 188 byte packets from the devic
Hi Torgeir,
On Sunday 14 October 2012 00:25:26 Torgeir Veimo wrote:
> When background EIT scanning is enabled on my VDR setup, I am getting
> signal disruption about every 20-21 seconds, with my sony playtv USB dual
> DVB-T tuner.
In the VDR-ML-thread you said that you have 2 of those devices?
I
e196a346d5d2e4695a587ca2f99da5e5491d4e95:
[media]: add MODULE_DEVICE_TABLE to technisat-usb2
Patrick Boettcher (1):
[media]: add MODULE_DEVICE_TABLE to technisat-usb2
drivers/media/usb/dvb-usb/technisat-usb2.c |1 +
1 file
This patch adds a module-device-table-entry to the
technisat-usb2-driver which will help udev to on-demand load the
driver. This was obviously forgotten during initial commit.
Signed-off-by: Patrick Boettcher
---
drivers/media/usb/dvb-usb/technisat-usb2.c |1 +
1 file changed, 1 insertion
Hi Mauro,
If it is not too late could you please incorporate the following patch to 3.7.
It fixed the autoloading of the technisat-ubs2-module when the device is
actually detected.
- [PATCH] [media]: add MODULE_DEVICE_TABLE to technisat-usb2
best regards,
--
Patrick.
-
--
To unsubscribe from
Hi list,
Not so long ago I used a special version of v4l-dvb.git (v3,2 + a patch) on
my system together with a debian stock kernel. It worked. Now I update my
system and thus the kernel and what I did last time doesn't seem to work any
longer:
1) checkout v3.2 of v4l-dvb.git and apply my path
On Friday 29 June 2012 13:24:52 Patrick Boettcher wrote:
> That said, IMO, the rtl-sdr driver should sit on the DVB-API. Maybe V4L2
*argl* I wanted to say, ... should _not_ sit on the DVB-API...
--
Patrick.
Kernel Labs Inc.
http://www.kernellabs.com/
--
To unsubscribe from this list: send
On Friday 29 June 2012 08:03:16 Antti Palosaari wrote:
> On 06/29/2012 07:32 AM, Mauro Carvalho Chehab wrote:
> > Em 27-06-2012 21:33, Antti Palosaari escreveu:
> >> SDR - Softaware Defined Radio support DVB API
> >> --
> >> *
> >> http://comments.gma
On Thursday 03 May 2012 16:20:23 Antti Palosaari wrote:
> Hello,
> Here we are, that's the first part I am going to fix as a GSoC
> project. Work is planned to start after two weeks but better to
> discuss beforehand.
>
> And wish-list is now open!
>
> I see two big DVB USB issues including multi
Hi Mike,
On Tuesday 01 May 2012 06:12:22 Michael Krufky wrote:
> From: Michael Krufky
>
> If your driver needs to deliver the raw payload to userspace without
> passing through the kernel demux, use function: dvb_dmx_swfilter_raw
I like this one very much. I had a background task sleeping in my
Hi Matias,
On Friday 30 March 2012 09:42:14 Matias Aguirre wrote:
> My name is Matias and im a programmer. I need to ask some things to
> you about the creation of new modules into the kernel for TV
> adapters. I have a new TV adapter with the chipset DM1305.
>
> I have the firmware of this chips
t24658.html
>
> file fr-Paris joined
Are you sure that the frequency you give for R8 is 700MHz?
700 MHz is not a "fitting" into the 8MHz structured sprectrum. To make
it fix it should be either 698 or 706.
best regards,
--
Patrick Boettcher
Kernel Labs Inc.
http://www.kernel
requency.
I never did something like myself, but from what I saw in gnuradio there
should be everything to make a FM-demod based on the data.
regards,
--
Patrick Boettcher
Kernel Labs Inc.
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscrib
, but is still not
able to report the parameters (USB-firmware-based frontends might be
poorly implemented).
And so on...
regards,
--
Patrick Boettcher
Kernel Labs Inc.
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the bod
patches as is. (git am)
I completely oversaw your pull request and issued mine.
Mauro in IRC told me that you issued a PULL request as well. Not being
aware that you have made any modifications Mauro suggest to pull from me
and add an Ack-By to the patches.
So he did not remo
On Wednesday 18 January 2012 14:40:09 Mauro Carvalho Chehab wrote:
> Em 18-01-2012 10:49, Patrick Boettcher escreveu:
> > On Tuesday 17 January 2012 19:45:28 you wrote:
> >> On ISDB-T, a few carriers are reserved for TMCC decoding
> >> (1 to 20 carriers, depending o
nfortunately I don't have a much better idea at hand right
now.
--
Patrick Boettcher
Kernel Labs Inc.
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
, that's why I hijacked it here
and it is short:
I love cmake and can't understand why people are not preferring it over
autotools for user-space applications and conditional+configurable
builds.
I hope my mail is not too off-topic.
regards,
--
Patrick Boettcher
Kernel Labs Inc.
ht
; The hadnling itself will be added in further patches.
>
> Signed-off-by: Jiri Slaby
> ---
> [..]
Thanks. I reviewed and added those commits to my tree (apparently Mike
did the same and asked Mauro to pull as well).
We will see how it turns out. :)
best regards,
--
Pa
: Properly retrieve symbol rate
are available in the git repository at:
http://linuxtv.org/git/pb/media_tree.git staging/for_v3.3
Patrick Boettcher (1):
[media] DVB-CORE: remove superfluous DTV_CMDs
drivers/media/dvb/dvb-core/dvb_frontend.c | 19 ---
1 files changed, 0
On Friday 13 January 2012 13:37:57 Dan Carpenter wrote:
> Hello Patrick Boettcher,
>
> I know this patch is really old but I was hoping you still might be
> able to take a look at it.
>
> The patch b6e760f30975: "V4L/DVB (12892): DVB-API: add support for
> ISDB-T and IS
On Saturday 14 January 2012 16:31:16 Antti Palosaari wrote:
> Version 2. I have made some changes from feedback got and
> what I myself found better. I will add documentation later
> after API issues are resolved.
> Thanks to Andreas, Patrick and Mauro.
>
> Cc: Patrick Boettc
On Friday 23 December 2011 18:27:12 Patrick Boettcher wrote:
> On Friday, December 23, 2011 02:38:59 PM Andreas Oberritter wrote:
> > On 22.12.2011 22:30, Antti Palosaari wrote:
> > > @@ -201,6 +205,9 @@ typedef enum fe_guard_interval {
> > >
>
On Friday, December 23, 2011 12:44:46 AM Jonathan Nieder wrote:
> Hi,
>
> Eduard Bloch wrote[1]:
> > current revision of the Cinergy S2 USB box from Terratec seems to use
> > another USB-IDs. The manufacturer provides patches at
> > http://linux.terratec.de/tv_en.html and it seems like the only
>
r mode. We save a new DTV-command.
I'm not making a secret of it, this is how we handled this inside DiBcom and
it would simplify the integration of our drivers for this standard. This is
planned to be done during the first half of 2012.
Comments?
--
Patrick Boettcher - KernelLabs
http://
bers are the guard time in micro-seconds. At least if I remember
correctly.
I can confirm that Tuesday next week if no one else corrects me before.
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media&quo
On Tuesday 20 December 2011 19:09:14 Mauro Carvalho Chehab wrote:
> On 20-12-2011 16:01, Antti Palosaari wrote:
> > On 12/20/2011 07:16 PM, Antti Palosaari wrote:
> >> On 12/20/2011 06:25 PM, Patrick Boettcher wrote:
> >>> Hi all,
> >>>
> >>>
Hi all,
On Tuesday 20 December 2011 16:42:53 Antti Palosaari wrote:
> Adding those to API is not mission impossible. Interleaver is only
> new parameter and all the rest are just extending values. But my
> time is limited... and I really would like to finally got Anysee
> smart card reader integra
osts. We are professional individuals in
our decisions and views.
I think it's better to limit public discussions in a professional
technical environment to technical problems - saying that I would want
to encourage you discuss with us off-list or in our blog what makes you
generalize in such a
Hi Mauro,
On Tue, 4 Oct 2011, Patrick Boettcher wrote:
Hi Mauro,
if it's not too late for 3.2 could you please pull from
git://linuxtv.org/pb/media_tree.git staging/for_v3.2
for
[media] dib9090: limit the I2C speed [media] dib8096P: add the reference
board [media] add the suppor
Hi Jos,
On Monday 21 November 2011 14:14:25 Jos Lemmens wrote:
> Hello Patrick,
>
> I have a Device 008: ID 2040:7060 Hauppauge Nova-T Stick 2 dvb
> adapter. It worked great with your driver in Linux kernel 2. But
> since kernel 3.0 it doesn't work anymore. When I try to start the tv
> with the t
nience is if someone is using linux-dvb
for developping dsp-software and wants to deliver things which aren't done.
But is this a case we want to "support" within the official API.
regards,
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
--
To unsubscribe from this li
he kernel is something I
usually avoid. And it can't sure be done within 300 bytes (the size of the
perl script). Also the .bin is smaller in term of size compared to the .hex.
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "un
is here:
> dvb-usb-firmware.c
> int usb_cypress_load_firmware()
I'm sure that you have found something yourself in the meantime, but I used
the attached script to convert .hex to binaries.
HTH,
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
hex2bin.pl
Description: Perl program
nd presentations around somewhere.
Until now I only saw this Email-thread and this:
http://www.linuxtv.org/events.php (at the very bottom).
Thanks in advance.
best regards
--
Patrick Boettcher
Kernel Labs Inc.
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsub
Hi Mauro,
if it's not too late for 3.2 could you please pull from
git://linuxtv.org/pb/media_tree.git staging/for_v3.2
for
[media] dib9090: limit the I2C speed
[media] dib8096P: add the reference board
[media] add the support for DiBcom
[media] dib7090: add the reference board
[media] DiB8
On Mon, 5 Sep 2011, Mauro Carvalho Chehab wrote:
Em 05-09-2011 05:11, Olivier Grenie escreveu:
Hello Mauro,
I agree with you but when I wrote this patch, my concern was that the read
register function (dib0070_read_reg)
returns a u16 and so I could not propagate the error. That's why I decide
Hi,
Afaik, this is fixed with those commits:
[media] dib0700: correct error message for_v3.0
[media] dib0700: protect the dib0700 buffer access
[media] DiBcom: protect the I2C bufer access
from
http://git.linuxtv.org/pb/media_tree.git/shortlog/refs/heads/for_v3.0
A pull request has been sent t
Hi Mauro,
On Wed, 3 Aug 2011, Patrick Boettcher wrote:
Would you please pull from
git://linuxtv.org/pb/media_tree.git for_v3.0
for the following to changesets:
[media] dib0700: protect the dib0700 buffer access
[media] DiBcom: protect the I2C bufer access
I added a patch from Olivier which
phase.
thanks and best regards,
--
Patrick Boettcher - Kernel Labs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
27;t
ask me when that will be :).
regards,
--
Patrick Boettcher - Kernel Labs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
adapter (and fe) in runtime (this
> is why I allowed to fail 2nd FE attach silently)
> * no probe (read eeprom etc) callback (I think read MAC could be renamed
> for probe)
> * no FE power control (GPIOs etc) that MFE patch adds this too
> * maybe probe1 and probe2 callbacks needed
Hi Florian,
On Sun, 3 Apr 2011, Florian Mickler wrote:
Hi,
since I got no reaction[1] on the vp702x driver, I proceed with the
dib0700.
There are multiple drivers in drivers/media/dvb/dvb-usb/ which use
usb_control_msg to perform dma to stack-allocated buffers. This is a bad idea
because of c
0 DVB-S/S2
[PATCH] [media] dib0700: fix possible NULL pointer...
FLEXCOP-PCI: fix __xlate_proc_name-warning for flexcop-pci
DIB0700: fix typo in dib0700_devices.c
Thanks,
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe l
On Saturday 26 March 2011 19:23:56 Mariusz Kozlowski wrote:
> Seems like 'adap->fe' test for NULL was meant to be before we dereference
> that pointer.
>
> Signed-off-by: Mariusz Kozlowski
Thanks, applied.
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
--
n the past, but they have been lost somewhere on
the road.
I hope this time it will make it.
best regards,
--
Patrick Boettcher - KernelLabs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger
Hi Mr Tux,
On Saturday 02 April 2011 15:45:22 Mr Tux wrote:
> Hi list, hello Patrick,
>
> A locking problem with specific dib3000mb devices is still present in
> kernel 2.6.38.
>
> Now people upgrading from lenny to squeeze are also affected - see: [1]
>
> Please have a look at my previous post
Hi Peter,
(adding back the list to CC)
On Saturday 12 March 2011 11:48:38 Peter Tilley wrote:
> Hi Patrick,
> My sincerest apologies for coming to you directly but I have tried the
> Linux mailing list and received no response and noticed you seem to have
> been heavily involved with much of the
Hi Mauro,
On Sun, 16 Jan 2011, Mauro Carvalho Chehab wrote:
Em 14-01-2011 12:51, Patrick Boettcher escreveu:
Hi Mauro,
if it is not too late, here is a pull request for some new devices from DiBcom.
It would be nice to have it in 2.6.38-rc1.
Pull from
git://linuxtv.org/pb/media_tree.git
Hi again,
On Wed, 12 Jan 2011, Mauro Carvalho Chehab wrote:
Em 12-01-2011 11:17, Robin Humble escreveu:
Hi,
this is basically a re-post of
http://www.linuxtv.org/pipermail/linux-dvb/2010-September/032744.html
which fixes an Oops when tuning eg. AVerMedia DVB-T Volar, Hauppauge
Nova-T, Winfa
changed, 7487 insertions(+), 1368 deletions(-)
best regards,
--
Patrick Boettcher - Kernel Labs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo inf
s bug exists.
We are currently creating a proper fix for it.
best regards,
--
Patrick Boettcher - Kernel Labs
http://www.kernellabs.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordom
1 - 100 of 233 matches
Mail list logo