Re: irqdesc porting help

2007-02-20 Thread Thomas Gleixner
On Tue, 2007-02-20 at 12:33 +0530, Maximus wrote: > Hi, > Sorry for the late response, attached is the code im trying to port > to linux - 2.6.20. Why does this need to use a kernel thread in the first place ? Usually chained handlers demultiplex the primary interrupt and invoke the demultiplexe

Re: irqdesc porting help

2007-02-20 Thread Komal Shah
On 2/20/07, Komal Shah <[EMAIL PROTECTED]> wrote: Maximus, On 2/20/07, Maximus <[EMAIL PROTECTED]> wrote: > Hi, > Sorry for the late response, attached is the code im trying to port > to linux - 2.6.20. > > Have you checked http://source.mvista.com/git linux-omap-2.6 git tree. Syed Khasim has

Re: irqdesc porting help

2007-02-20 Thread Komal Shah
Maximus, On 2/20/07, Maximus <[EMAIL PROTECTED]> wrote: Hi, Sorry for the late response, attached is the code im trying to port to linux - 2.6.20. Have you checked http://source.mvista.com/git linux-omap-2.6 git tree. Syed Khasim has already submitted this OMAP2430 TWL4030 chip core driver

Re: irqdesc porting help

2007-02-19 Thread Maximus
Hi, Sorry for the late response, attached is the code im trying to port to linux - 2.6.20. Regards, Jo On 2/15/07, Paul Mundt <[EMAIL PROTECTED]> wrote: On Thu, Feb 15, 2007 at 12:01:37PM +0530, Maximus wrote: > Im trying to port some drivers between 2.6.14 and 2.6.19 > > I find that irqde

Re: irqdesc porting help

2007-02-15 Thread Arjan van de Ven
On Thu, 2007-02-15 at 18:41 +0530, Maximus wrote: > Hi, >My drivers in 2.6.14 use statements like > desc->triggered = 1; >And desc also points to some members of irqdesc which arent in > 2.6.19 but in 2.6.14. > >Im a newbie, What changes am i supposed to make to make it wo

Re: irqdesc porting help

2007-02-15 Thread Russell King
On Thu, Feb 15, 2007 at 06:41:25PM +0530, Maximus wrote: > Hi, > My drivers in 2.6.14 use statements like > desc->triggered = 1; > And desc also points to some members of irqdesc which arent in > 2.6.19 but in 2.6.14. But why do you have code which accesses these members? Can you

Re: irqdesc porting help

2007-02-15 Thread Maximus
Hi, My drivers in 2.6.14 use statements like desc->triggered = 1; And desc also points to some members of irqdesc which arent in 2.6.19 but in 2.6.14. Im a newbie, What changes am i supposed to make to make it work in 2.6.19. Im not sure what changes are exactly needed. Ple

Re: irqdesc porting help

2007-02-15 Thread Russell King
On Thu, Feb 15, 2007 at 07:33:47PM +0900, Paul Mundt wrote: > On Thu, Feb 15, 2007 at 12:01:37PM +0530, Maximus wrote: > > Im trying to port some drivers between 2.6.14 and 2.6.19 > > > > I find that irqdesc has changed completely. how do i port > > the drivers between 2.6.14 and 2.6.19? > > > >

Re: irqdesc porting help

2007-02-15 Thread Paul Mundt
On Thu, Feb 15, 2007 at 12:01:37PM +0530, Maximus wrote: > Im trying to port some drivers between 2.6.14 and 2.6.19 > > I find that irqdesc has changed completely. how do i port > the drivers between 2.6.14 and 2.6.19? > > is there a porting guide available to port the drivers > which use irqdesc