Add an lcsplx() ("splx for locore") like the other PowerPC ports

have.  This will allow us to share locore code with them.
This commit is contained in:
thorpej 2000-11-16 01:56:05 +00:00
parent 5868050f6f
commit eb04d01500
1 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.59 2000/09/24 12:32:37 jdolecek Exp $ */
/* $NetBSD: machdep.c,v 1.60 2000/11/16 01:56:05 thorpej Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -85,6 +85,8 @@ char *bootpath;
paddr_t msgbuf_paddr;
vaddr_t msgbuf_vaddr;
int lcsplx(int); /* called from locore.S */
static int fake_spl __P((void));
static int fake_splx __P((int));
static void fake_setsoft __P((void));
@ -672,6 +674,16 @@ callback(p)
panic("callback"); /* for now XXX */
}
/*
* Perform an `splx()' for locore.
*/
int
lcsplx(int ipl)
{
return (splx(ipl));
}
/*
* Initial Machine Interface.
*/