Remove the alias splnone() for spl0(). It was used only once.

This commit is contained in:
Bruce Evans 1994-09-20 05:07:32 +00:00
parent d5b7518d9c
commit 2b3d0249bd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2918
3 changed files with 5 additions and 7 deletions

View file

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.23 1994/09/13 06:43:57 phk Exp $
* $Id: isa.c,v 1.24 1994/09/13 17:06:47 phk Exp $
*/
/*
@ -311,7 +311,7 @@ isa_configure() {
register_imask(dvp, net_imask);
for (dvp = isa_devtab_null; dvp->id_driver; dvp++)
register_imask(dvp, SWI_CLOCK_MASK);
splnone();
spl0();
}
/*

View file

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: spl.h,v 1.3 1994/08/02 07:39:06 davidg Exp $
* $Id: spl.h,v 1.4 1994/08/15 03:15:11 wollman Exp $
*/
#ifndef _MACHINE_IPL_H_
@ -118,8 +118,6 @@ GENSPL(splsoftclock, cpl = SWI_CLOCK_MASK)
GENSPL(splsofttty, cpl |= SWI_TTY_MASK)
GENSPL(spltty, cpl |= tty_imask)
#define splnone() spl0()
static __inline void
spl0(void)
{

View file

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
* $Id: isa.c,v 1.23 1994/09/13 06:43:57 phk Exp $
* $Id: isa.c,v 1.24 1994/09/13 17:06:47 phk Exp $
*/
/*
@ -311,7 +311,7 @@ isa_configure() {
register_imask(dvp, net_imask);
for (dvp = isa_devtab_null; dvp->id_driver; dvp++)
register_imask(dvp, SWI_CLOCK_MASK);
splnone();
spl0();
}
/*