diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-06 21:09:36 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-11-06 21:09:36 +0000 |
commit | 309b4115ecf709320a009b5d9688b01d94cebad8 (patch) | |
tree | a6e2bebcdef5e5b6587aa82f9b167e3120d78352 /sys/arch/i386 | |
parent | 98fd84149f579f54527a8d3cab80987ba2a03c52 (diff) |
move netisr definition into md code to allow arch provide suitable allocation; tested on most archs
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/isa/icu.s | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/icu.s b/sys/arch/i386/isa/icu.s index 3aff719725a..8bd2af133ca 100644 --- a/sys/arch/i386/isa/icu.s +++ b/sys/arch/i386/isa/icu.s @@ -1,4 +1,4 @@ -/* $OpenBSD: icu.s,v 1.19 2003/04/17 03:42:14 drahn Exp $ */ +/* $OpenBSD: icu.s,v 1.20 2003/11/06 21:09:34 mickey Exp $ */ /* $NetBSD: icu.s,v 1.45 1996/01/07 03:59:34 mycroft Exp $ */ /*- @@ -37,6 +37,8 @@ .globl _C_LABEL(astpending), _C_LABEL(netisr) _C_LABEL(imen): .long 0xffff # interrupt mask enable (all off) +_C_LABEL(netisr): + .long 0 # scheduling bits for network .text |