diff options
author | 2010-03-03 21:52:13 +0000 | |
---|---|---|
committer | 2010-03-03 21:52:13 +0000 | |
commit | 93225f2d6dfcc419f039e7a79f09045df4dd666c (patch) | |
tree | f68ee41654b4e45b8e680706f6d4fa1e2f3f54d4 | |
parent | Enable urndis(4) everywhere that has USB enabled to get it tested. (diff) | |
download | wireguard-openbsd-93225f2d6dfcc419f039e7a79f09045df4dd666c.tar.xz wireguard-openbsd-93225f2d6dfcc419f039e7a79f09045df4dd666c.zip |
Add support for the ipp_ind_ext_int[0] interrupt.
-rw-r--r-- | sys/arch/socppc/dev/ipic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/socppc/dev/ipic.c b/sys/arch/socppc/dev/ipic.c index 3d51da16528..0327894dcd9 100644 --- a/sys/arch/socppc/dev/ipic.c +++ b/sys/arch/socppc/dev/ipic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipic.c,v 1.11 2009/10/01 20:19:19 kettenis Exp $ */ +/* $OpenBSD: ipic.c,v 1.12 2010/03/03 21:52:13 kettenis Exp $ */ /* * Copyright (c) 2008 Mark Kettenis @@ -209,6 +209,8 @@ ipic_semsr(int ivec) return 0x02000000; case 23: return 0x01000000; + case 48: + return 0x80000000; } return 0; |