Re: [PATCHv2] Si2168: increase timeout to fix firmware loading

2015-03-03 Thread Luis Henriques
On Thu, Feb 26, 2015 at 11:41:54PM +0200, Antti Palosaari wrote: From: Jurgen Kramer gtmkra...@xs4all.nl Increase si2168 cmd execute timeout to prevent firmware load failures. Tests shows it takes up to 52ms to load the 'dvb-demod-si2168-a30-01.fw' firmware. Increase timeout to a safe value

[PATCH 3/5] [media] pwc-if: fix build warning when !CONFIG_USB_PWC_INPUT_EVDEV

2014-10-01 Thread Luis Henriques
Label err_video_unreg in function usb_pwc_probe() is only used when CONFIG_USB_PWC_INPUT_EVDEV is defined. drivers/media/usb/pwc/pwc-if.c:1104:1: warning: label 'err_video_unreg' defined but not used [-Wunused-label] Signed-off-by: Luis Henriques luis.henriq...@canonical.com --- drivers/media

Re: stable regression: tda18271_read_regs: [1-0060|M] ERROR: i2c_transfer returned: -19

2013-12-19 Thread Luis Henriques
On Mon, Dec 16, 2013 at 08:57:48PM +0100, Frederik Himpe wrote: On za, 2013-12-14 at 09:24 -0200, Mauro Carvalho Chehab wrote: Em Fri, 13 Dec 2013 22:19:39 +0100 Frederik Himpe fhi...@telenet.be escreveu: [My excuses for multiposting, it seems gmane does not permit posting to all

Re: [PATCH stable v3.7] media mantis: fix silly crash case

2013-05-22 Thread Luis Henriques
On Tue, May 21, 2013 at 03:07:03PM +0200, Bjørn Mork wrote: Hello, Please apply mainline commit e1d45ae to any maintained stable kernel prior to v3.7. I just hit this bug on a Debian 3.2.41-2+deb7u2 kernel: Thanks, I'll queue it for the 3.5 kernel. Cheers, -- Luis -- To unsubscribe from

Re: (still) NULL pointer crashes with nuvoton_cir driver

2012-10-15 Thread Luis Henriques
On Mon, Oct 15, 2012 at 01:01:11PM +0200, Matthijs Kooijman wrote: Hey Folks, I've been suffering from a NULL pointer crash while initializing the nuvoton_cir driver. It occurs 100% reliable on a 3.5 kernel when I bombard my receiver with IR signals during bootup. It seems that

Re: [PATCH v2] [media] rc: ite-cir: Initialise ite_dev::rdev earlier

2012-08-28 Thread Luis Henriques
On Mon, Aug 20, 2012 at 12:32:27AM +0100, Ben Hutchings wrote: ite_dev::rdev is currently initialised in ite_probe() after rc_register_device() returns. If a newly registered device is opened quickly enough, we may enable interrupts and try to use ite_dev::rdev before it has been initialised.

Re: [PATCH v2] [media] rc: ite-cir: Initialise ite_dev::rdev earlier

2012-08-28 Thread Luis Henriques
On Tue, Aug 28, 2012 at 10:09:55AM -0700, Ben Hutchings wrote: On Tue, 2012-08-28 at 12:44 +0100, Luis Henriques wrote: On Mon, Aug 20, 2012 at 12:32:27AM +0100, Ben Hutchings wrote: ite_dev::rdev is currently initialised in ite_probe() after rc_register_device() returns. If a newly

Re: (still) NULL pointer crashes with nuvoton_cir driver

2012-08-17 Thread Luis Henriques
(Adding Mauro to CC has he is the maintainer) On Thu, Aug 16, 2012 at 10:09:32AM +0200, Matthijs Kooijman wrote: Hi folks, I'm currently compiling a 3.5 kernel with just the rdev initialization moved up to see if this will fix my problem at all, but I'd like your view on this in the

[PATCH 1/1] [media] ene_ir: Fix driver initialisation

2012-06-19 Thread Luis Henriques
the invocation of pnp_port_start() to an earlier stage in the probe function. Cc: sta...@vger.kernel.org Signed-off-by: Luis Henriques luis.henriq...@canonical.com --- drivers/media/rc/ene_ir.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/media/rc/ene_ir.c b

Re: [PATCH v3] [media] rc: Postpone ISR registration

2012-04-30 Thread Luis Henriques
On Mon, Apr 23, 2012 at 02:38:11PM -0400, Jarod Wilson wrote: On Sat, Apr 21, 2012 at 05:25:21PM +0100, Luis Henriques wrote: An early registration of an ISR was causing a crash to several users (for example, with the ite-cir driver: http://bugs.launchpad.net/bugs/972723). The reason

[PATCH v3] [media] rc: Postpone ISR registration

2012-04-21 Thread Luis Henriques
to request_irq() and to request_region() to a later stage on the driver probe function. Cc: sta...@vger.kernel.org Signed-off-by: Luis Henriques luis.henriq...@canonical.com --- drivers/media/rc/ene_ir.c | 32 - drivers/media/rc/fintek-cir.c | 20 +-- drivers/media/rc/ite

Re: [PATCH 1/1] [media] ite-cir: postpone ISR registration

2012-04-19 Thread Luis Henriques
On Wed, Apr 18, 2012 at 09:54:07PM +0100, Luis Henriques wrote: An early registration of an ISR was causing a crash to several users (for example here: http://bugs.launchpad.net/bugs/972723 The reason was that IRQs were being triggered before the driver initialisation was completed

Re: [PATCH 1/1] [media] ite-cir: postpone ISR registration

2012-04-19 Thread Luis Henriques
On Thu, Apr 19, 2012 at 04:44:44PM -0400, Jarod Wilson wrote: On Wed, Apr 18, 2012 at 09:54:07PM +0100, Luis Henriques wrote: An early registration of an ISR was causing a crash to several users (for example here: http://bugs.launchpad.net/bugs/972723 The reason was that IRQs were being

[PATCH v2] [media] rc: Postpone ISR registration

2012-04-19 Thread Luis Henriques
to request_irq() and to request_region() to a later stage on the driver probe function. Cc: sta...@vger.kernel.org Signed-off-by: Luis Henriques luis.henriq...@canonical.com --- drivers/media/rc/ene_ir.c | 29 ++-- drivers/media/rc/fintek-cir.c | 17 ++-- drivers/media/rc

[PATCH 1/1] [media] ite-cir: postpone ISR registration

2012-04-18 Thread Luis Henriques
stage on the driver probe function. Signed-off-by: Luis Henriques luis.henriq...@canonical.com --- drivers/media/rc/ite-cir.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/rc/ite-cir.c b/drivers/media/rc/ite-cir.c index 682009d..98d8ccf 100644