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. This

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

2012-04-19 Thread Jarod Wilson
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. This

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 1/1] [media] ite-cir: postpone ISR registration

2012-04-18 Thread Luis Henriques
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. This patch fixes this by moving the invocation to request_irq() to a later