linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RE,
@ 2018-11-24 14:08 Miss Sharifah Ahmad Mustahfa
  0 siblings, 0 replies; 37+ messages in thread
From: Miss Sharifah Ahmad Mustahfa @ 2018-11-24 14:08 UTC (permalink / raw)
  To: Recipients

Hello,

First of all i will like to apologies for my manner of communication because you do not know me personally, its due to the fact that i have a very important proposal for you.

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2023-11-22  9:48 ` Hans Verkuil
@ 2023-11-22 13:17   ` Thomas Devoogdt
  0 siblings, 0 replies; 37+ messages in thread
From: Thomas Devoogdt @ 2023-11-22 13:17 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: Thomas Devoogdt, linux-media, Thomas Devoogdt

Hi Hans,

Thx for the fast response!
See inline below.

Kind regards,

Thomas Devoogdt


Op wo 22 nov 2023 om 10:48 schreef Hans Verkuil <hverkuil@xs4all.nl>:
>
> On 22/11/2023 10:26, Thomas Devoogdt wrote:
> > Hi all,
> >
> >
> > I have two questions:
> >
> > 1.
> > When running v4l2-compliance on a proprietary driver, I get this error:
> >
> > ```
> > Input/Output configuration ioctls:
> > fail: v4l2-test-io-config.cpp(227): fmt.fmt.pix.width >=
> > enumtimings.timings.bt.width * 1.5
> > fail: v4l2-test-io-config.cpp(386): Timings check failed for input 0.
> > test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: FAIL
> > ```
> >
> > Which brings me here:
> > https://git.linuxtv.org/v4l-utils.git/tree/utils/v4l2-compliance/v4l2-test-io-config.cpp#n227
> >
> > ```
> > fail_on_test(fmt.fmt.pix.width < enumtimings.timings.bt.width);
> > fail_on_test(fmt.fmt.pix.width >= enumtimings.timings.bt.width * 1.5);
> > fail_on_test(fmt.fmt.pix.height * factor < enumtimings.timings.bt.height);
> > fail_on_test(fmt.fmt.pix.height * factor >=
> > enumtimings.timings.bt.height * 1.5);
> > ```
> >
> > The problem is that the driver supports VIDIOC_S_DV_TIMINGS but is not
> > able to apply the specific format just returns the actual timings.
> > This is from what I know, not a violation, so I'm not sure what the
> > driver should return if it is not able to set a custom timing. Or is
> > this check just a bit too strict?
>
> This test enumerates all timings returned by VIDIOC_ENUM_DV_TIMINGS.
> All these timings should be valid supported timings. For each returned
> timing it calls S_DV_TIMINGS to set it. Then it call G_DV_TIMINGS to
> verify that the width and height of the new timings match what was
> requested. Apparently that worked, otherwise the test would have
> failed there.

Yes, indeed that part is ok.

> Next it gets the new format (G_FMT). The driver must update the format
> when the timings are updated. In this case the width of the returned
> format is more than 1.5 times the width of the requested timings.
> That doesn't sound right.

I found that G_FMT returns 16x16 (not sure where that is done), but
DV_TIMINGS was 0x0.
So fail_on_test(fmt.fmt.pix.width >= enumtimings.timings.bt.width *
1.5) triggered.

> Your claim that S_DV_TIMINGS can't set the new timings is dubious
> since G_DV_TIMINGS apparently returns the new timings correctly.
> Also, ENUM_DV_TIMINGS shouldn't return unsupported timings either.
>

I meant hardware-wise with not supported, but S_DV_TIMINGS itself is
indeed supported.

> >
> >
> > 2.
> > For another driver, I get this error:
> >
> > ```
> > Input ioctls:
> > fail: v4l2-test-input-output.cpp(443): use of deprecated digital video status
> > fail: v4l2-test-input-output.cpp(496): invalid attributes for input 0
> > test VIDIOC_G/S/ENUMINPUT: FAIL
> > ```
> >
> > It might be true that setting V4L2_IN_ST_NO_CARRIER is deprecated, but
> > is that really an error, not better to just have it as a warning?
> > After all, how can userspace know specific details if needed? Perhaps
> > checking that V4L2_IN_ST_NO_SIGNAL has also been set is enough, and if
> > V4L2_IN_ST_NO_CARRIER is set, but not V4L2_IN_ST_NO_SIGNAL, then it
> > might be an error.
>
> The NO_CARRIER, NO_EQU and NO_ACCESS status flags are DVB specific, but this
> ioctl isn't used by DVB anymore. I think very old drivers in the past (long
> since removed or changed) used this, but new drivers must not use this since
> it makes no sense. Note that v4l2-compliance is often more strict than the
> V4L2 spec itself: it is meant to ensure that drivers follow best practices.

I changed V4L2_IN_ST_NO_CARRIER to V4L2_IN_ST_NO_POWER which is fine enough.

> Note that the error message is not very good: it should say "digital TV"
> rather than "digital video". I'll fix that since that's confusing.
>
> Regards,
>
>         Hans
>
> >
> > Thx in advance!
> >
> > Kr,
> >
> > Thomas Devoogdt
> >
>
>

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2023-11-22  9:26 Thomas Devoogdt
@ 2023-11-22  9:48 ` Hans Verkuil
  2023-11-22 13:17   ` Re: Thomas Devoogdt
  0 siblings, 1 reply; 37+ messages in thread
From: Hans Verkuil @ 2023-11-22  9:48 UTC (permalink / raw)
  To: Thomas Devoogdt, linux-media; +Cc: Thomas Devoogdt

On 22/11/2023 10:26, Thomas Devoogdt wrote:
> Hi all,
> 
> 
> I have two questions:
> 
> 1.
> When running v4l2-compliance on a proprietary driver, I get this error:
> 
> ```
> Input/Output configuration ioctls:
> fail: v4l2-test-io-config.cpp(227): fmt.fmt.pix.width >=
> enumtimings.timings.bt.width * 1.5
> fail: v4l2-test-io-config.cpp(386): Timings check failed for input 0.
> test VIDIOC_ENUM/G/S/QUERY_DV_TIMINGS: FAIL
> ```
> 
> Which brings me here:
> https://git.linuxtv.org/v4l-utils.git/tree/utils/v4l2-compliance/v4l2-test-io-config.cpp#n227
> 
> ```
> fail_on_test(fmt.fmt.pix.width < enumtimings.timings.bt.width);
> fail_on_test(fmt.fmt.pix.width >= enumtimings.timings.bt.width * 1.5);
> fail_on_test(fmt.fmt.pix.height * factor < enumtimings.timings.bt.height);
> fail_on_test(fmt.fmt.pix.height * factor >=
> enumtimings.timings.bt.height * 1.5);
> ```
> 
> The problem is that the driver supports VIDIOC_S_DV_TIMINGS but is not
> able to apply the specific format just returns the actual timings.
> This is from what I know, not a violation, so I'm not sure what the
> driver should return if it is not able to set a custom timing. Or is
> this check just a bit too strict?

This test enumerates all timings returned by VIDIOC_ENUM_DV_TIMINGS.
All these timings should be valid supported timings. For each returned
timing it calls S_DV_TIMINGS to set it. Then it call G_DV_TIMINGS to
verify that the width and height of the new timings match what was
requested. Apparently that worked, otherwise the test would have
failed there.

Next it gets the new format (G_FMT). The driver must update the format
when the timings are updated. In this case the width of the returned
format is more than 1.5 times the width of the requested timings.
That doesn't sound right.

Your claim that S_DV_TIMINGS can't set the new timings is dubious
since G_DV_TIMINGS apparently returns the new timings correctly.
Also, ENUM_DV_TIMINGS shouldn't return unsupported timings either.

> 
> 
> 2.
> For another driver, I get this error:
> 
> ```
> Input ioctls:
> fail: v4l2-test-input-output.cpp(443): use of deprecated digital video status
> fail: v4l2-test-input-output.cpp(496): invalid attributes for input 0
> test VIDIOC_G/S/ENUMINPUT: FAIL
> ```
> 
> It might be true that setting V4L2_IN_ST_NO_CARRIER is deprecated, but
> is that really an error, not better to just have it as a warning?
> After all, how can userspace know specific details if needed? Perhaps
> checking that V4L2_IN_ST_NO_SIGNAL has also been set is enough, and if
> V4L2_IN_ST_NO_CARRIER is set, but not V4L2_IN_ST_NO_SIGNAL, then it
> might be an error.

The NO_CARRIER, NO_EQU and NO_ACCESS status flags are DVB specific, but this
ioctl isn't used by DVB anymore. I think very old drivers in the past (long
since removed or changed) used this, but new drivers must not use this since
it makes no sense. Note that v4l2-compliance is often more strict than the
V4L2 spec itself: it is meant to ensure that drivers follow best practices.

Note that the error message is not very good: it should say "digital TV"
rather than "digital video". I'll fix that since that's confusing.

Regards,

	Hans

> 
> Thx in advance!
> 
> Kr,
> 
> Thomas Devoogdt
> 


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2023-10-23 12:04   ` Re: Jules Irenge
@ 2023-10-23 12:49     ` Laurent Pinchart
  0 siblings, 0 replies; 37+ messages in thread
From: Laurent Pinchart @ 2023-10-23 12:49 UTC (permalink / raw)
  To: Jules Irenge; +Cc: linux-media

Hello Jules,

On Mon, Oct 23, 2023 at 01:04:37PM +0100, Jules Irenge wrote:
> On Sun, Oct 22, 2023 at 11:22:53PM +0300, Laurent Pinchart wrote:
> Hi Laurent,
> 
> Thanks for replying.
> 
> > The driver has most likely bit-rotten over the last few years, as to my
> > knowledge nobody has really tested it recently. The first step would
> > thus be to try to capture images and see how it behaves (or doesn't
> > behave).
> 
> This looks like an opportunity for me.  
> 
> > What hardware will you use for testing ?
> 
> About that, I have my PC and a rasberry pi. Would you have an advise
> on which device  I can best use to test ?

You will need a development board with an OMAP4 SoC, and a compatible
camera module. I've used the PandaBoard ([1]) personally back when I
worked on the driver, but I don't recall what camera module I was using.
Looking at ancient git branches, it may have been based on an AR0330,
possibly using a module from Leopard Imaging. This was nearly 10 years
ago though, sourcing the hardware may be fairly difficult.

[1] https://www.digikey.fi/en/product-highlight/t/texas-instruments/pandaboard

> If I have to purchase, I can do that as this is just for my learning
> and contribution purpose.

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2023-10-22 20:22 ` Re: Laurent Pinchart
@ 2023-10-23 12:04   ` Jules Irenge
  2023-10-23 12:49     ` Re: Laurent Pinchart
  0 siblings, 1 reply; 37+ messages in thread
From: Jules Irenge @ 2023-10-23 12:04 UTC (permalink / raw)
  To: Laurent Pinchart; +Cc: linux-media

On Sun, Oct 22, 2023 at 11:22:53PM +0300, Laurent Pinchart wrote:
Hi Laurent,

Thanks for replying.

> The driver has most likely bit-rotten over the last few years, as to my
> knowledge nobody has really tested it recently. The first step would
> thus be to try to capture images and see how it behaves (or doesn't
> behave).

This looks like an opportunity for me.  

> What hardware will you use for testing ?

About that, I have my PC and a rasberry pi. Would you have an advise on which device  I can best use to test ?

If I have to purchase, I can do that as this is just for my learning and contribution purpose.

Thanks,
Jules

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
       [not found] <CAOuULM555ZNXbsbZywJ8qkcNGbP+hdgBihqqEBYF_oA-FK2fxQ@mail.gmail.com>
@ 2023-10-22 20:22 ` Laurent Pinchart
  2023-10-23 12:04   ` Re: Jules Irenge
  0 siblings, 1 reply; 37+ messages in thread
From: Laurent Pinchart @ 2023-10-22 20:22 UTC (permalink / raw)
  To: Jules Irenge; +Cc: linux-media

Hello Jules,

(CC'ing the linux-media mailing list, as discussions about the driver
should happen there, in public)

On Sun, Oct 22, 2023 at 05:46:59PM +0100, Jules Irenge wrote:
> Hi 
> I have some time I would like to volunteer contributing to the omap4iss.
> If it's fine with you, would you give me more info about it

The driver has most likely bit-rotten over the last few years, as to my
knowledge nobody has really tested it recently. The first step would
thus be to try to capture images and see how it behaves (or doesn't
behave).

What hardware will you use for testing ?

-- 
Regards,

Laurent Pinchart

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
       [not found]   ` <163588780885.2993099.2088131017920983969@swboyd.mtv.corp.google.com>
@ 2021-11-25 15:01     ` Hans de Goede
  0 siblings, 0 replies; 37+ messages in thread
From: Hans de Goede @ 2021-11-25 15:01 UTC (permalink / raw)
  To: Stephen Boyd, Andy Shevchenko, Daniel Scally, Laurent Pinchart,
	Liam Girdwood, Mark Brown, Mark Gross, Mauro Carvalho Chehab,
	Michael Turquette, Mika Westerberg, Rafael J.Wysocki,
	Wolfram Sang
  Cc: Len Brown, linux-acpi, platform-driver-x86, linux-kernel,
	linux-i2c, Sakari Ailus, Kate Hsuan, linux-media, linux-clk

Hi,

On 11/2/21 22:16, Stephen Boyd wrote:
> Quoting Hans de Goede (2021-11-02 02:49:01)
>> diff --git a/drivers/clk/clk-tps68470.c b/drivers/clk/clk-tps68470.c
>> new file mode 100644
>> index 000000000000..2ad0ac2f4096
>> --- /dev/null
>> +++ b/drivers/clk/clk-tps68470.c
>> @@ -0,0 +1,257 @@
>> +// SPDX-License-Identifier: GPL-2.0
>> +/*
>> + * Clock driver for TPS68470 PMIC
>> + *
>> + * Copyright (c) 2021 Red Hat Inc.
>> + * Copyright (C) 2018 Intel Corporation
>> + *
>> + * Authors:
>> + *     Hans de Goede <hdegoede@redhat.com>
>> + *     Zaikuo Wang <zaikuo.wang@intel.com>
>> + *     Tianshu Qiu <tian.shu.qiu@intel.com>
>> + *     Jian Xu Zheng <jian.xu.zheng@intel.com>
>> + *     Yuning Pu <yuning.pu@intel.com>
>> + *     Antti Laakso <antti.laakso@intel.com>
>> + */
>> +
>> +#include <linux/clk-provider.h>
>> +#include <linux/clkdev.h>
>> +#include <linux/kernel.h>
>> +#include <linux/mfd/tps68470.h>
>> +#include <linux/module.h>
>> +#include <linux/platform_device.h>
>> +#include <linux/platform_data/tps68470.h>
>> +#include <linux/regmap.h>
>> +
>> +#define TPS68470_CLK_NAME "tps68470-clk"
>> +
>> +#define to_tps68470_clkdata(clkd) \
>> +       container_of(clkd, struct tps68470_clkdata, clkout_hw)
>> +
> [...]
>> +
>> +static int tps68470_clk_set_rate(struct clk_hw *hw, unsigned long rate,
>> +                                unsigned long parent_rate)
>> +{
>> +       struct tps68470_clkdata *clkdata = to_tps68470_clkdata(hw);
>> +       unsigned int idx = tps68470_clk_cfg_lookup(rate);
>> +
>> +       if (rate != clk_freqs[idx].freq)
>> +               return -EINVAL;
>> +
>> +       clkdata->clk_cfg_idx = idx;
> 
> It deserves a comment that set_rate can only be called when the clk is
> gated. We have CLK_SET_RATE_GATE flag as well that should be set if the
> clk can't support changing rate while enabled. With that flag set, this
> function should be able to actually change hardware with the assumption
> that the framework won't call down into this clk_op when the clk is
> enabled.

Ok for v6 I've added the CLK_SET_RATE_GATE flag + a comment why
it used and moved the divider programming to tps68470_clk_set_rate()m
while keeping the PLL_EN + output-enable writes in tps68470_clk_prepare()


> 
>> +
>> +       return 0;
>> +}
>> +
>> +static const struct clk_ops tps68470_clk_ops = {
>> +       .is_prepared = tps68470_clk_is_prepared,
>> +       .prepare = tps68470_clk_prepare,
>> +       .unprepare = tps68470_clk_unprepare,
>> +       .recalc_rate = tps68470_clk_recalc_rate,
>> +       .round_rate = tps68470_clk_round_rate,
>> +       .set_rate = tps68470_clk_set_rate,
>> +};
>> +
>> +static const struct clk_init_data tps68470_clk_initdata = {
> 
> Is there a reason to make this a static global? It's probably better to
> throw it on the stack so that a structure isn't sitting around after
> driver probe being unused.

Fixed for v6.

Thanks & Regards,

Hans


> 
>> +       .name = TPS68470_CLK_NAME,
>> +       .ops = &tps68470_clk_ops,
>> +};
> 


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2021-04-05 21:12 David Villasana Jiménez
@ 2021-04-06  5:17 ` Greg KH
  0 siblings, 0 replies; 37+ messages in thread
From: Greg KH @ 2021-04-06  5:17 UTC (permalink / raw)
  To: David Villasana Jiménez; +Cc: mchehab, linux-media, linux-staging

On Mon, Apr 05, 2021 at 04:12:48PM -0500, David Villasana Jiménez wrote:
> linux-kernel@vger.kernel.org, outreachy-kernel@googlegroups.com
> Bcc: 
> Subject: [PATCH] staging: media: atomisp: i2c: Fix alignment to match open
>  parenthesis
> Reply-To: 

Something went wrong with your email again :(

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2017-11-13 14:55 Amos Kalonzo
  0 siblings, 0 replies; 37+ messages in thread
From: Amos Kalonzo @ 2017-11-13 14:55 UTC (permalink / raw)


Attn:

I am wondering why You haven't respond to my email for some days now.
reference to my client's contract balance payment of (11.7M,USD)
Kindly get back to me for more details.

Best Regards

Amos Kalonzo

^ permalink raw reply	[flat|nested] 37+ messages in thread

* RE:
@ 2017-02-23 15:09 Qin's Yanjun
  0 siblings, 0 replies; 37+ messages in thread
From: Qin's Yanjun @ 2017-02-23 15:09 UTC (permalink / raw)



How are you today and your family? I require your attention and honest
co-operation about some issues which i will really want to discuss with you
which.  Looking forward to read from you soon.  

Qin's


______________________________

Sky Silk, http://aknet.kz

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-13  9:54         ` Re: Patrick Boettcher
@ 2015-11-13 11:37           ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 37+ messages in thread
From: Mauro Carvalho Chehab @ 2015-11-13 11:37 UTC (permalink / raw)
  To: Patrick Boettcher; +Cc: Alec Leamas, linux-media

Em Fri, 13 Nov 2015 10:54:31 +0100
Patrick Boettcher <patrick.boettcher@posteo.de> escreveu:

> On Thu, 12 Nov 2015 15:41:50 -0200 Mauro Carvalho Chehab
> <mchehab@osg.samsung.com> 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 it will create a response
> with the selected text in the message body. But only this part, not the
> rest of the message.

Yes, I use such feature when needed, but then I need to do two "replies"
and merge on a single reply email, with kinda sucks and spends me more time.
So, I tend to postpone those patches, if I am in a hurry.

However, lots of developers use mutt, with doesn't have such option.

Regards,
Mauro

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12 17:20   ` Re: Mauro Carvalho Chehab
  2015-11-12 17:31     ` Re: Alec Leamas
@ 2015-11-13 10:48     ` Alberto Mardegan
  1 sibling, 0 replies; 37+ messages in thread
From: Alberto Mardegan @ 2015-11-13 10:48 UTC (permalink / raw)
  To: linux-media

On 11/12/2015 07:20 PM, Mauro Carvalho Chehab wrote:
> Complaining doesn't help at all. We don't read the mailing list to

I wasn't complaining, just asking :-)

[...]
> All patches that goes to the ML are automatically stored there, and will be
> handled by one of the (sub-)maintainers.
[...]

That was the information I missed. Then all is fine, thanks. :-)

Ciao,
  Alberto

-- 
http://blog.mardy.it <- geek in un lingua international!

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12 17:41       ` Re: Mauro Carvalho Chehab
  2015-11-12 18:11         ` Re: Alec Leamas
@ 2015-11-13  9:54         ` Patrick Boettcher
  2015-11-13 11:37           ` Re: Mauro Carvalho Chehab
  1 sibling, 1 reply; 37+ messages in thread
From: Patrick Boettcher @ 2015-11-13  9:54 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: Alec Leamas, linux-media

On Thu, 12 Nov 2015 15:41:50 -0200 Mauro Carvalho Chehab
<mchehab@osg.samsung.com> 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 it will create a response
with the selected text in the message body. But only this part, not the
rest of the message.

regards,
--
Patrick.

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12 17:41       ` Re: Mauro Carvalho Chehab
@ 2015-11-12 18:11         ` Alec Leamas
  2015-11-13  9:54         ` Re: Patrick Boettcher
  1 sibling, 0 replies; 37+ messages in thread
From: Alec Leamas @ 2015-11-12 18:11 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/11/15 18:41, Mauro Carvalho Chehab wrote:
> Em Thu, 12 Nov 2015 18:31:51 +0100
> Alec Leamas <leamas.alec@gmail.com> escreveu:
> 
>> On 12/11/15 18:20, Mauro Carvalho Chehab wrote:
>>> Em Thu, 12 Nov 2015 18:16:18 +0300
>>> Alberto Mardegan <mardy@users.sourceforge.net> escreveu:
>>
>>> Complaining doesn't help at all. We don't read the mailing list to
>>> check for new patches. Instead, we look for them at:
>>> 	https://patchwork.linuxtv.org/project/linux-media/list/

So, now you find it?!

>>> However, if the emailer breaks the patch (with was the case of the
>>> "tv tuner max2165..." patch), patchwork won't recognize it as a
>>> patch, and we'll only see the e-mail by accident.
>>
>> Ah... that explains why nobody cares about my patch[1]... Is there any
>> way around picky emailers? 
> 
> Use a good one ;) Here, I use claws-mail, with works fine if configured
> to send text-only e-mails and to not break long lines.

Installing claws-mail for this purpose wasn't too hard.

>> Is putting the patch in an attachment OK?
> 
> No, because it doesn't make easy for people to reply with comments.

Fair enough.



Thanks for newbie help. Cheers!

--alec


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12 17:31     ` Re: Alec Leamas
@ 2015-11-12 17:41       ` Mauro Carvalho Chehab
  2015-11-12 18:11         ` Re: Alec Leamas
  2015-11-13  9:54         ` Re: Patrick Boettcher
  0 siblings, 2 replies; 37+ messages in thread
From: Mauro Carvalho Chehab @ 2015-11-12 17:41 UTC (permalink / raw)
  To: Alec Leamas; +Cc: linux-media

Em Thu, 12 Nov 2015 18:31:51 +0100
Alec Leamas <leamas.alec@gmail.com> escreveu:

> On 12/11/15 18:20, Mauro Carvalho Chehab wrote:
> > Em Thu, 12 Nov 2015 18:16:18 +0300
> > Alberto Mardegan <mardy@users.sourceforge.net> escreveu:
> 
> > Complaining doesn't help at all. We don't read the mailing list to
> > check for new patches. Instead, we look for them at:
> > 	https://patchwork.linuxtv.org/project/linux-media/list/
> > 
> > All patches that goes to the ML are automatically stored there, and will be
> > handled by one of the (sub-)maintainers. 
> 
> > However, if the emailer breaks the patch (with was the case of the
> > "tv tuner max2165..." patch), patchwork won't recognize it as a
> > patch, and we'll only see the e-mail by accident.
> 
> Ah... that explains why nobody cares about my patch[1]... Is there any
> way around picky emailers? 

Use a good one ;) Here, I use claws-mail, with works fine if configured
to send text-only e-mails and to not break long lines.

Another alternative is to use git to send the email with something like:

	git send-email HEAD~1 --annotate

That requires some setup at the .git/config file:
	https://git-scm.com/docs/git-send-email

As you use gmail, you could add at the .git/config:

[sendemail]
    smtpEncryption = tls
    smtpServer = smtp.gmail.com
    smtpUser = yourname@gmail.com
    smtpServerPort = 587

> Is putting the patch in an attachment OK?

No, because it doesn't make easy for people to reply with comments.

Regards,
Mauro

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12 17:20   ` Re: Mauro Carvalho Chehab
@ 2015-11-12 17:31     ` Alec Leamas
  2015-11-12 17:41       ` Re: Mauro Carvalho Chehab
  2015-11-13 10:48     ` Re: Alberto Mardegan
  1 sibling, 1 reply; 37+ messages in thread
From: Alec Leamas @ 2015-11-12 17:31 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media

On 12/11/15 18:20, Mauro Carvalho Chehab wrote:
> Em Thu, 12 Nov 2015 18:16:18 +0300
> Alberto Mardegan <mardy@users.sourceforge.net> escreveu:

> Complaining doesn't help at all. We don't read the mailing list to
> check for new patches. Instead, we look for them at:
> 	https://patchwork.linuxtv.org/project/linux-media/list/
> 
> All patches that goes to the ML are automatically stored there, and will be
> handled by one of the (sub-)maintainers. 

> However, if the emailer breaks the patch (with was the case of the
> "tv tuner max2165..." patch), patchwork won't recognize it as a
> patch, and we'll only see the e-mail by accident.

Ah... that explains why nobody cares about my patch[1]... Is there any
way around picky emailers? Is putting the patch in an attachment OK?

Cheers!

--alec


[1] https://bugzilla.kernel.org/show_bug.cgi?id=75751


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12 15:16 ` Alberto Mardegan
@ 2015-11-12 17:20   ` Mauro Carvalho Chehab
  2015-11-12 17:31     ` Re: Alec Leamas
  2015-11-13 10:48     ` Re: Alberto Mardegan
  0 siblings, 2 replies; 37+ messages in thread
From: Mauro Carvalho Chehab @ 2015-11-12 17:20 UTC (permalink / raw)
  To: Alberto Mardegan; +Cc: linux-media

Em Thu, 12 Nov 2015 18:16:18 +0300
Alberto Mardegan <mardy@users.sourceforge.net> escreveu:

> On 11/12/2015 06:25 AM, Walter Cheuk wrote:
> > I sent a patch named "[PATCH] tv tuner max2165 driver: extend
> > frequency range" two weeks ago (22/10). Is it being reviewed? Thank
> > you.
> 
> Since such reminders seem to help, I also sent a patch on 27/10:
> "[PATCH] [media] em28xx: add Terratec Cinergy T XS (MT2060)"
> 
> It's not urgent, given that people have been surviving without support 
> for this device for years, but I'd just like to make sure that it won't 
> be forgotten.

Complaining doesn't help at all. We don't read the mailing list to
check for new patches. Instead, we look for them at:
	https://patchwork.linuxtv.org/project/linux-media/list/

All patches that goes to the ML are automatically stored there, and will be
handled by one of the (sub-)maintainers.

If your patch is stored there, you only need to worry when you receive
an status update. If accepted, it will soon be on my tree. Otherwise,
some action would likely be required from you, and you should likely
have received some e-mail from the (sub-)maintainer that reviewed your
patch with further instructions (except when the issue was already
fixed by some other patch).

However, if the emailer breaks the patch (with was the case of the
"tv tuner max2165..." patch), patchwork won't recognize it as a
patch, and we'll only see the e-mail by accident.

In the case of the em28xx patch, it is there:
	https://patchwork.linuxtv.org/project/linux-media/list/?submitter=Alberto

So, we'll handle it.

Regards,
Mauro

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2015-11-12  3:25 Walter Cheuk
@ 2015-11-12 15:16 ` Alberto Mardegan
  2015-11-12 17:20   ` Re: Mauro Carvalho Chehab
  0 siblings, 1 reply; 37+ messages in thread
From: Alberto Mardegan @ 2015-11-12 15:16 UTC (permalink / raw)
  To: linux-media

On 11/12/2015 06:25 AM, Walter Cheuk wrote:
> I sent a patch named "[PATCH] tv tuner max2165 driver: extend
> frequency range" two weeks ago (22/10). Is it being reviewed? Thank
> you.

Since such reminders seem to help, I also sent a patch on 27/10:
"[PATCH] [media] em28xx: add Terratec Cinergy T XS (MT2060)"

It's not urgent, given that people have been surviving without support 
for this device for years, but I'd just like to make sure that it won't 
be forgotten.

Ciao,
   Alberto


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2015-08-19 13:01 christain147
  0 siblings, 0 replies; 37+ messages in thread
From: christain147 @ 2015-08-19 13:01 UTC (permalink / raw)
  To: Recipients

Good day,hoping you read this email and respond to me in good time.I do not intend to solicit for funds but  your time and energy in using my own resources to assist the less privileged.I am medically confined at the moment hence I request your indulgence.
I will give you a comprehensive brief once I hear from you.

Please forward your response to my private email address:
gudworks104@yahoo.com

Thanks and reply.

Robert Grondahl

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2015-05-21 23:51 kontakt
  0 siblings, 0 replies; 37+ messages in thread
From: kontakt @ 2015-05-21 23:51 UTC (permalink / raw)
  To: Recipients

Teraz mozesz uzyskac kredyt w wysokosci 2% za uniewaznic i dostac do 40 lat lub wiecej, aby splacic. Nie naleza do kredytów krótkoterminowych, które sprawiaja, ze zwróci sie w kilka tygodni lub miesiecy. Nasza oferta obejmuje; * Refinansowanie * Home Improvement * Kredyty samochodowe * Konsolidacja zadluzenia * Linia kredytowa * Druga hipoteczny * Biznes Pozyczki * Pozyczki Personal

  Zdobadz pieniadze potrzebne dzis z duza iloscia czasu, aby dokonac platnosci powrotem. Aby zastosowac, aby wyslac wszystkie pytania lub zaproszenia fwfshelpdesk@gmail.com: + 1- 435-241-5945

************************************************************
Now you can get a loan at 2% per annul and get up to 40 years or more to pay it back. Don't fall for the short term loans that make you pay back in weeks or months. Our offer include; *Refinance *Home Improvement *Auto Loans *Debt Consolidation*Line of Credit *Second Mortgage *Business Loans*Personal Loans

 Get the money you need today with plenty of time to make the payments back. To apply, send all inquiries to fwfshelpdesk@gmail.com or call : + 1- 435-241-5945

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2013-06-24 11:12 Neslihanp
  0 siblings, 0 replies; 37+ messages in thread
From: Neslihanp @ 2013-06-24 11:12 UTC (permalink / raw)




-- 
Do you received our last email.

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2012-10-21 20:55 TAN WONG
@ 2012-10-21 23:21 ` Jens Bauer
  0 siblings, 0 replies; 37+ messages in thread
From: Jens Bauer @ 2012-10-21 23:21 UTC (permalink / raw)
  To: linux-media; +Cc: abrarjnu

FYI: This "Tain Wong" has been shut down and will not spam us again.


Love
Jens

On Mon, 22 Oct 2012 05:55:20 +0900, TAN WONG wrote:
> 
> I am Mr. Tan Wong,I have a business to inform you about, it involve 
> the transfer of funds ($24,500,000,00) contact 
> (tan.wong222@yahoo.com.hk) with your full names.
> 
> Mr. Tan Wong
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 37+ messages in thread

* re:
@ 2012-04-29  1:45 Sril
  0 siblings, 0 replies; 37+ messages in thread
From: Sril @ 2012-04-29  1:45 UTC (permalink / raw)
  To: mdsflmk2304sdfsdfk


wow this is crazy check it out http://t.co/wHIQrrcm 



~*Advertisement

^ permalink raw reply	[flat|nested] 37+ messages in thread

* re:
@ 2012-04-14 13:13 MOHAMMAD IZADI
  0 siblings, 0 replies; 37+ messages in thread
From: MOHAMMAD IZADI @ 2012-04-14 13:13 UTC (permalink / raw)
  To: sales.china


please look in to this http://www.nbnews15.net/biz/?read=9539925

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2012-03-04 15:51 relinter
  0 siblings, 0 replies; 37+ messages in thread
From: relinter @ 2012-03-04 15:51 UTC (permalink / raw)




Usted gano setecientos cincuenta mil libras Sterling. Enviar nombres,  
edad, ocupacion, Pais.

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2012-02-15 21:17 Irish Lotto
  0 siblings, 0 replies; 37+ messages in thread
From: Irish Lotto @ 2012-02-15 21:17 UTC (permalink / raw)




You won £750,000 GBP. Send Name, Age, occupation, Country.

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: Re:.
       [not found] <1327504053.20722.yint-ygo-j2me@web113316.mail.gq1.yahoo.com>
@ 2012-01-24 13:54 ` Meftah Tayeb
  0 siblings, 0 replies; 37+ messages in thread
From: Meftah Tayeb @ 2012-01-24 13:54 UTC (permalink / raw)
  To: Franklin Meng, william88tu, scmy80, arbsfruit, kenshiro,
	schien61, tony.brinneman, linux-media

Need moderation.

----- Original Message ----- 
From: "Franklin Meng" <fmeng2002@yahoo.com>
To: <william88tu@hotmail.com>; <scmy80@yahoo.com.sg>; <arbsfruit@aol.com>; 
<kenshiro@dotplanet.com>; <schien61@yahoo.com>; 
<tony.brinneman@wellsfargo.com>; <linux-media@vger.kernel.org>
Sent: Wednesday, January 25, 2012 5:07 PM
Subject: Re:.


>
> OMG! Don’t wait any second! Click this 
> link!http://masfgrafica.com.ar/go.php?kID=41m4
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus 
> signature database 6826 (20120125) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
> 


__________ Information from ESET NOD32 Antivirus, version of virus signature database 6826 (20120125) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com




^ permalink raw reply	[flat|nested] 37+ messages in thread

* RE:
  2010-05-19 16:44 asheeshb
@ 2010-05-20 17:51 ` Karicheri, Muralidharan
  0 siblings, 0 replies; 37+ messages in thread
From: Karicheri, Muralidharan @ 2010-05-20 17:51 UTC (permalink / raw)
  To: Bhardwaj, Asheesh, linux-media

Asheesh,

Please re-send this patch with following:-

1) A detailed description of what you are trying to fix in each of this patch. You need to also run the checkpatch.pl script to make sure there are no errors.
2) Please make this patch based on the http://git.linuxtv.org/v4l-dvb.git master branch. I am assuming you have based it upon the Arago tree.
3) add the Signed-off-by field.

Murali Karicheri
Software Design Engineer
Texas Instruments Inc.
Germantown, MD 20874
phone: 301-407-9583
email: m-karicheri2@ti.com

>-----Original Message-----
>From: linux-media-owner@vger.kernel.org [mailto:linux-media-
>owner@vger.kernel.org] On Behalf Of Bhardwaj, Asheesh
>Sent: Wednesday, May 19, 2010 12:45 PM
>To: linux-media@vger.kernel.org
>Subject:
>
>The patches will be applied to the davinci tree
>the ../drivers/media/video/davinci and will affect the both the capture and
>display drivers. Apply these patches to the git kernel.
>From asheeshb@ti.com # This line is ignored.
>GIT:
>From: asheeshb@ti.com
>Subject:
>In-Reply-To:
>
>--
>To unsubscribe from this list: send the line "unsubscribe linux-media" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
       [not found]   ` <20100510223656.m8nzy8mwqf44g8g8@webmail.wcsd.k12.oh.us>
@ 2010-05-11  4:19     ` Mr. Vincent Hong
  0 siblings, 0 replies; 37+ messages in thread
From: Mr. Vincent Hong @ 2010-05-11  4:19 UTC (permalink / raw)
  To: sisenbarger

Dear Friend,
I have a business transaction which I need your assistant, your share will be
40%; please if you are interested do contact me for more details on my  
personal
email: hg.vincent33@gmail.com
Vincent Hong


Quoting sisenbarger@wcsd.k12.oh.us:

>




^ permalink raw reply	[flat|nested] 37+ messages in thread

* re:
@ 2010-01-09 17:03 Ustin Gavrie
  0 siblings, 0 replies; 37+ messages in thread
From: Ustin Gavrie @ 2010-01-09 17:03 UTC (permalink / raw)



--
I...HAVE...A...PROFILING...SUM...OF...$25MILLION....WHICH...I...SEEK...YOUR..
.PARTNERSHIP...IN...ACCOMMODATING...FOR...INVESTMENT..PURPOSE...YOU
...SHALL...BE...REWARDED...WITH...THIRTY...PERCENT....IF...INTERESTED...
PLEASE...REPLY...FOR...MORE...DETAILS.


^ permalink raw reply	[flat|nested] 37+ messages in thread

* RE:
@ 2009-12-08  6:23 Irish News Center
  0 siblings, 0 replies; 37+ messages in thread
From: Irish News Center @ 2009-12-08  6:23 UTC (permalink / raw)


You won 750,000gbp.Send:Name,Age,Country


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2009-10-26 14:33 Hasse Hagen Johansen
@ 2009-10-27 10:00 ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 37+ messages in thread
From: Mauro Carvalho Chehab @ 2009-10-27 10:00 UTC (permalink / raw)
  To: Hasse Hagen Johansen; +Cc: linux-media

Em Mon, 26 Oct 2009 15:33:50 +0100
Hasse Hagen Johansen <hasse-linuxmedia@hagenjohansen.dk> escreveu:

> subscribe linux-media

You should send subscribe emails to majordomo@vger.kernel.org instead.

> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html




Cheers,
Mauro

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2009-09-21 15:27           ` Re: George Joseph
@ 2009-09-21 16:07             ` Andreas Oberritter
  0 siblings, 0 replies; 37+ messages in thread
From: Andreas Oberritter @ 2009-09-21 16:07 UTC (permalink / raw)
  To: George Joseph; +Cc: Linux Media Mailing List

George Joseph wrote:
> Thanks Andreas, That answers my question. I am using a tree I checkd out 3
> months ago. I used the DEMUX_SET_SOURCE API to set the ts feed to the
> tuner. Is this explicity done on Linux DVB 3?

By default, all demux devices are connected to the first frontend slot
of the DM7025. You can use DMX_SET_SOURCE to connect a demux to a
specific slot.

Regards,
Andreas


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2009-09-21 14:46         ` Andreas Oberritter
@ 2009-09-21 15:27           ` George Joseph
  2009-09-21 16:07             ` Re: Andreas Oberritter
  0 siblings, 1 reply; 37+ messages in thread
From: George Joseph @ 2009-09-21 15:27 UTC (permalink / raw)
  To: Andreas Oberritter; +Cc: Linux Media Mailing List

Thanks Andreas, That answers my question. I am using a tree I checkd out 3
months ago. I used the DEMUX_SET_SOURCE API to set the ts feed to the
tuner. Is this explicity done on Linux DVB 3?

Thanks,
Warm regs,
George.


> Hello George,
>
> demux0-3 represent different TS inputs. You can open each demux device
> multiple times. The 128 PID filters are shared between the four devices.
>
> Regards,
> Andreas
>
> George Joseph wrote:
>> Hello All,
>>
>>  I am new to the list. I am currently working on a dm7025 platform and
>> would like to know if there is a possibillity to use the 128 pid filters
>> on the xilleon 226. currently I see only /dev/dvb/adaptor0/demux0-3 in
>> my
>> device directory - i,e; at a point in time I can use only 4 tpid filters
>> from the 128 available at hardware level.
>>
>>
>> Cheers,
>> Warm regs,
>> G.
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media"
>> in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
  2009-09-21 13:54       ` George Joseph
@ 2009-09-21 14:46         ` Andreas Oberritter
  2009-09-21 15:27           ` Re: George Joseph
  0 siblings, 1 reply; 37+ messages in thread
From: Andreas Oberritter @ 2009-09-21 14:46 UTC (permalink / raw)
  To: Linux Media Mailing List

Hello George,

demux0-3 represent different TS inputs. You can open each demux device
multiple times. The 128 PID filters are shared between the four devices.

Regards,
Andreas

George Joseph wrote:
> Hello All,
> 
>  I am new to the list. I am currently working on a dm7025 platform and
> would like to know if there is a possibillity to use the 128 pid filters
> on the xilleon 226. currently I see only /dev/dvb/adaptor0/demux0-3 in my
> device directory - i,e; at a point in time I can use only 4 tpid filters
> from the 128 available at hardware level.
> 
> 
> Cheers,
> Warm regs,
> G.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



^ permalink raw reply	[flat|nested] 37+ messages in thread

* RE:
@ 2009-04-30 14:55 hamiltonss
  0 siblings, 0 replies; 37+ messages in thread
From: hamiltonss @ 2009-04-30 14:55 UTC (permalink / raw)


I am a foreign Investor, I want to invest in your country and I am writting to seek your assistance in starting a business investment in your country and execute a business investment under your management. If you can assist me in receiving my money and investing it in your country e-mail me with your telephone number so I can explain to you more better and give you further information. My E-mail is -  frankingxs@msn.com    


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re:
@ 2009-04-12 17:39 Pavel Valach
  0 siblings, 0 replies; 37+ messages in thread
From: Pavel Valach @ 2009-04-12 17:39 UTC (permalink / raw)
  To: linux-media

Please, delete this empty topic, I only wanted help how to post, now I know it.

^ permalink raw reply	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2023-11-22 13:17 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-24 14:08 RE, Miss Sharifah Ahmad Mustahfa
  -- strict thread matches above, loose matches on Subject: below --
2023-11-22  9:26 Thomas Devoogdt
2023-11-22  9:48 ` Hans Verkuil
2023-11-22 13:17   ` Re: Thomas Devoogdt
     [not found] <CAOuULM555ZNXbsbZywJ8qkcNGbP+hdgBihqqEBYF_oA-FK2fxQ@mail.gmail.com>
2023-10-22 20:22 ` Re: Laurent Pinchart
2023-10-23 12:04   ` Re: Jules Irenge
2023-10-23 12:49     ` Re: Laurent Pinchart
2021-11-02  9:48 [PATCH v5 00/11] Add support for X86/ACPI camera sensor/PMIC setup with clk and regulator platform data Hans de Goede
2021-11-02  9:49 ` [PATCH v5 05/11] clk: Introduce clk-tps68470 driver Hans de Goede
     [not found]   ` <163588780885.2993099.2088131017920983969@swboyd.mtv.corp.google.com>
2021-11-25 15:01     ` Hans de Goede
2021-04-05 21:12 David Villasana Jiménez
2021-04-06  5:17 ` Greg KH
2017-11-13 14:55 Re: Amos Kalonzo
2017-02-23 15:09 Qin's Yanjun
2015-11-12  3:25 Walter Cheuk
2015-11-12 15:16 ` Alberto Mardegan
2015-11-12 17:20   ` Re: Mauro Carvalho Chehab
2015-11-12 17:31     ` Re: Alec Leamas
2015-11-12 17:41       ` Re: Mauro Carvalho Chehab
2015-11-12 18:11         ` Re: Alec Leamas
2015-11-13  9:54         ` Re: Patrick Boettcher
2015-11-13 11:37           ` Re: Mauro Carvalho Chehab
2015-11-13 10:48     ` Re: Alberto Mardegan
2015-08-19 13:01 Re: christain147
2015-05-21 23:51 Re: kontakt
2013-06-24 11:12 Re: Neslihanp
2012-10-21 20:55 TAN WONG
2012-10-21 23:21 ` Jens Bauer
2012-04-29  1:45 Sril
2012-04-14 13:13 re: MOHAMMAD IZADI
2012-03-04 15:51 relinter
2012-02-15 21:17 Re: Irish Lotto
     [not found] <1327504053.20722.yint-ygo-j2me@web113316.mail.gq1.yahoo.com>
2012-01-24 13:54 ` Re: Meftah Tayeb
2010-05-19 16:44 asheeshb
2010-05-20 17:51 ` Karicheri, Muralidharan
     [not found] <20100510223054.luv5qlqdlp28g08o@webmail.wcsd.k12.oh.us>
     [not found] ` <20100510223506.77ylw39bns84c80c@webmail.wcsd.k12.oh.us>
     [not found]   ` <20100510223656.m8nzy8mwqf44g8g8@webmail.wcsd.k12.oh.us>
2010-05-11  4:19     ` Mr. Vincent Hong
2010-01-09 17:03 Ustin Gavrie
2009-12-08  6:23 Irish News Center
2009-10-26 14:33 Hasse Hagen Johansen
2009-10-27 10:00 ` Mauro Carvalho Chehab
     [not found] <1252297247.18025.8.camel@morgan.walls.org>
     [not found] ` <1252369138.2571.17.camel@morgan.walls.org>
2009-09-20  2:20   ` Preliminary working HVR-1850 IR hardware and grey Hauppauge RC-5 remote Andy Walls
2009-09-21 13:36     ` Steven Toth
2009-09-21 13:54       ` George Joseph
2009-09-21 14:46         ` Andreas Oberritter
2009-09-21 15:27           ` Re: George Joseph
2009-09-21 16:07             ` Re: Andreas Oberritter
2009-04-30 14:55 hamiltonss
2009-04-12 17:39 Pavel Valach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).