diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-03-03 21:52:14 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-03-03 21:52:14 +0000 |
commit | c58586710282ecc363d093a5c2ab322b1b2ecdd6 (patch) | |
tree | 758a58e29156e178673b472e036e2328c3911809 | |
parent | d32b681a8c0aeca0b50f2a8717dcf77f18f6dce1 (diff) |
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; |