diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-07-02 23:24:22 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-07-02 23:24:22 +0000 |
commit | 66c9c83ba8b1fa467b337cbc579ff888c64a5ada (patch) | |
tree | 709b82f80abcffe937cefe3b460af62e71bfd06b | |
parent | fa7c10552d8545c72fa4edc2d3f2caed1c29863f (diff) |
Pretend that softintr_establish() actually works.
ok kettenis@
-rw-r--r-- | sys/arch/hppa64/hppa64/intr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/hppa64/intr.c b/sys/arch/hppa64/hppa64/intr.c index 4f867511aa0..3403f5c13f3 100644 --- a/sys/arch/hppa64/hppa64/intr.c +++ b/sys/arch/hppa64/hppa64/intr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.c,v 1.1 2010/07/01 03:44:35 jsing Exp $ */ +/* $OpenBSD: intr.c,v 1.2 2010/07/02 23:24:21 jsing Exp $ */ /* * Copyright (c) Joel Sing <jsing@openbsd.org> @@ -25,7 +25,7 @@ volatile u_long imask; void * softintr_establish(int pri, void (*handler)(void *), void *arg) { - return NULL; + return (void *)1; } void |