diff options
author | 2016-06-07 06:37:33 +0000 | |
---|---|---|
committer | 2016-06-07 06:37:33 +0000 | |
commit | 1f963b6a7aa66849478fd4d403f937ca0bd036ff (patch) | |
tree | cc1b89bf751352bfa4749de68e6fa52ecd94ea2e | |
parent | Add -g and -p options to control device and file start position. (diff) | |
download | wireguard-openbsd-1f963b6a7aa66849478fd4d403f937ca0bd036ff.tar.xz wireguard-openbsd-1f963b6a7aa66849478fd4d403f937ca0bd036ff.zip |
remove splsoftfd and splausoft
theyre unused.
ok kettenis@
-rw-r--r-- | sys/arch/sparc64/dev/fd.c | 3 | ||||
-rw-r--r-- | sys/arch/sparc64/include/psl.h | 12 |
2 files changed, 2 insertions, 13 deletions
diff --git a/sys/arch/sparc64/dev/fd.c b/sys/arch/sparc64/dev/fd.c index 159bc75aea0..f79ec2a59e5 100644 --- a/sys/arch/sparc64/dev/fd.c +++ b/sys/arch/sparc64/dev/fd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fd.c,v 1.45 2014/07/12 18:44:43 tedu Exp $ */ +/* $OpenBSD: fd.c,v 1.46 2016/06/07 06:37:33 dlg Exp $ */ /* $NetBSD: fd.c,v 1.112 2003/08/07 16:29:35 agc Exp $ */ /*- @@ -542,7 +542,6 @@ fdcattach(fdc, pri) return (-1); } - printf(" softpri %d", PIL_FDSOFT); if (fdc->sc_flags & FDC_NOEJECT) printf(": manual eject"); printf("\n"); diff --git a/sys/arch/sparc64/include/psl.h b/sys/arch/sparc64/include/psl.h index 87c9fab80dc..b2397081583 100644 --- a/sys/arch/sparc64/include/psl.h +++ b/sys/arch/sparc64/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.29 2016/03/07 13:21:51 naddy Exp $ */ +/* $OpenBSD: psl.h,v 1.30 2016/06/07 06:37:33 dlg Exp $ */ /* $NetBSD: psl.h,v 1.20 2001/04/13 23:30:05 thorpej Exp $ */ /* @@ -46,8 +46,6 @@ /* Interesting spl()s */ #define PIL_SCSI 3 -#define PIL_FDSOFT 4 -#define PIL_AUSOFT 4 #define PIL_BIO 5 #define PIL_VIDEO 5 #define PIL_TTY 6 @@ -402,12 +400,6 @@ SPLHOLD(splsoftint, 1) #define splsoftclock splsoftint #define splsoftnet splsoftint -/* audio software interrupts are at software level 4 */ -SPLHOLD(splausoft, PIL_AUSOFT) - -/* floppy software interrupts are at software level 4 too */ -SPLHOLD(splfdsoft, PIL_FDSOFT) - /* Block devices */ SPLHOLD(splbio, PIL_BIO) @@ -447,8 +439,6 @@ SPLHOLD(splhigh, PIL_HIGH) #define spl0() spl0X(__FILE__, __LINE__) #define splsoftint() splsoftintX(__FILE__, __LINE__) -#define splausoft() splausoftX(__FILE__, __LINE__) -#define splfdsoft() splfdsoftX(__FILE__, __LINE__) #define splbio() splbioX(__FILE__, __LINE__) #define splnet() splnetX(__FILE__, __LINE__) #define spltty() splttyX(__FILE__, __LINE__) |