taglinefilesource code
listp57arch/m68k/kernel/ints.cvoid insert_isr (isr_node_t **listp, isr_node_t *node)
listp65arch/m68k/kernel/ints.ccur = *listp;
listp69arch/m68k/kernel/ints.clistp = &cur->next;
listp74arch/m68k/kernel/ints.c*listp = node;
listp79arch/m68k/kernel/ints.cvoid delete_isr (isr_node_t **listp, isrfunc isr)
listp86arch/m68k/kernel/ints.cfor (np = *listp; np; listp = &np->next, np = *listp) {
listp88arch/m68k/kernel/ints.c*listp = np->next;
listp104include/asm-m68k/irq.hextern void insert_isr (isr_node_t **listp, isr_node_t *node);
listp109include/asm-m68k/irq.hextern void delete_isr (isr_node_t **listp, isrfunc isr);