diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-04-08 21:19:32 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2009-04-08 21:19:32 +0000 |
commit | 7d6c453d8038a6f7688bf4d0d3137bc6b56e5436 (patch) | |
tree | 62204ad0cf2b02e386e67798141b8a7efb2052de /sys/arch/zaurus/include | |
parent | 8238133246ae3851704cd0610f21634538e47b8f (diff) |
Cleanup arm soft interrupt handling; remove the unused IPL_SERIAL and rename
IPL_SOFTSERIAL to IPL_SOFTTTY.
tested by oga@
ok miod@
Diffstat (limited to 'sys/arch/zaurus/include')
-rw-r--r-- | sys/arch/zaurus/include/intr.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/zaurus/include/intr.h b/sys/arch/zaurus/include/intr.h index 24fe0fb3e11..2545a62309b 100644 --- a/sys/arch/zaurus/include/intr.h +++ b/sys/arch/zaurus/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.7 2007/05/15 05:26:45 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.8 2009/04/08 21:19:31 kettenis Exp $ */ /* $NetBSD: intr.h,v 1.12 2003/06/16 20:00:59 thorpej Exp $ */ /* @@ -49,16 +49,15 @@ #define IPL_SOFTNET 3 /* software network interrupt */ #define IPL_BIO 4 /* block I/O */ #define IPL_NET 5 /* network */ -#define IPL_SOFTSERIAL 6 /* software serial interrupt */ +#define IPL_SOFTTTY 6 /* software serial interrupt */ #define IPL_TTY 7 /* terminals */ #define IPL_VM 8 /* memory allocation */ #define IPL_AUDIO 9 /* audio device */ #define IPL_CLOCK 10 /* clock interrupt */ #define IPL_STATCLOCK 11 /* statistics clock interrupt */ #define IPL_HIGH 12 /* everything */ -#define IPL_SERIAL 13 /* serial device */ -#define NIPL 14 +#define NIPL 13 /* Interrupt sharing types. */ #define IST_NONE 0 /* none */ |