[BACK]Return to sa11x0_intr.c CVS log [TXT][DIR] Up to [local] / sys / arch / arm / sa11x0

Diff for /sys/arch/arm/sa11x0/sa11x0_intr.c between version 1.1 and 1.3

version 1.1, 2008/03/04 16:05:17 version 1.3, 2008/05/11 10:26:11
Line 40 
Line 40 
  */   */
   
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
 /*  
 __KERNEL_RCSID(0, "$NetBSD: pxa2x0_intr.c,v 1.5 2003/07/15 00:24:55 lukem Exp $");  
 */  
   
 #include <sys/cdefs.h>  
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/systm.h>  #include <sys/systm.h>
 #include <sys/malloc.h>  #include <sys/malloc.h>
Line 622 
Line 617 
         struct intrhandler *ih;          struct intrhandler *ih;
         irqno = lhandler - handler;          irqno = lhandler - handler;
   
         if (irqno < 1 || irqno >= ICU_LEN)          if (irqno < 0 || irqno >= ICU_LEN)
                 panic("intr_disestablish: bogus irq number %d", irqno);                  panic("intr_disestablish: bogus irq number %d", irqno);
   
         psw = disable_interrupts(I32_bit);          psw = disable_interrupts(I32_bit);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

CVSweb