networking looks good?

This commit is contained in:
Markus Fröschle
2015-01-14 18:38:33 +00:00
parent bbc2f7d974
commit 102876cdf6
3 changed files with 4 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
# can be either "Y" or "N" (without quotes). "Y" for using the m68k-elf-, "N" for using the m68k-atari-mint
# toolchain
COMPILE_ELF=Y
COMPILE_ELF=N
ifeq (Y,$(COMPILE_ELF))
TCPREFIX=m68k-elf-

View File

@@ -582,7 +582,7 @@ bool dma_interrupt_handler(void *arg1, void *arg2)
}
}
//set_ipl(ipl);
set_ipl(ipl);
return true; /* handled */
}

View File

@@ -224,7 +224,8 @@ bool isr_execute_handler(int vector)
{
if (isrtab[index].vector == vector)
{
return isrtab[index].handler(isrtab[index].hdev, isrtab[index].harg);
isrtab[index].handler(isrtab[index].hdev, isrtab[index].harg);
return true;
}
}
err("no isr handler for vector %d found. Spurious?\r\n", vector);