Changes in kernel/arch/ppc32/src/drivers/pic.c [1b20da0:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/drivers/pic.c
r1b20da0 ra35b458 55 55 pic[PIC_MASK_HIGH] = pic[PIC_MASK_HIGH] | (1 << (intnum - 32)); 56 56 } 57 57 58 58 } 59 59 … … 85 85 if (pic) { 86 86 uint32_t pending; 87 87 88 88 pending = pic[PIC_PENDING_LOW]; 89 89 if (pending != 0) 90 90 return fnzb32(pending); 91 91 92 92 pending = pic[PIC_PENDING_HIGH]; 93 93 if (pending != 0) 94 94 return fnzb32(pending) + 32; 95 95 } 96 96 97 97 return 255; 98 98 }
Note:
See TracChangeset
for help on using the changeset viewer.