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/mvme68k | |
parent | 98fd84149f579f54527a8d3cab80987ba2a03c52 (diff) |
move netisr definition into md code to allow arch provide suitable allocation; tested on most archs
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c index cd6dd30bce5..2ca248d44e7 100644 --- a/sys/arch/mvme68k/mvme68k/machdep.c +++ b/sys/arch/mvme68k/mvme68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.77 2003/06/02 23:27:51 millert Exp $ */ +/* $OpenBSD: machdep.c,v 1.78 2003/11/06 21:09:35 mickey Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -1030,6 +1030,8 @@ badvaddr(addr, size) return (0); } +int netisr; + void netintr(arg) void *arg; |