[parisc-linux] Kernel compilation for J5600

Grant Grundler grundler@parisc-linux.org
Fri, 4 Jul 2003 21:20:40 -0600


On Tue, Jul 01, 2003 at 04:03:27PM +0200, Joel Soete wrote:
> Or do we actualy need a specific local_irq_set(x)?

We do.
#define local_irq_save(x) \
        __asm__ __volatile__("rsm %1,%0" : "=r" (x) :"i" (PSW_I) : "memory" )
#define local_irq_set(x) \
	__asm__ __volatile__("ssm %1,%0" : "=r" (x) : "i" (PSW_I) : "memory" )

I'll add that as well in my next commit.
Still looking over some of your other changes.

thanks,
grant