summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1997-04-11 12:29:51 +0000
committerkato <kato@FreeBSD.org>1997-04-11 12:29:51 +0000
commit3aa8204279022673e2958fd270d39bc8ab0c277a (patch)
tree23cb9760aff461e89064b86b68b2ff284f78193f /sys
parentdaec40af7df6129f0a9c65a95610dd25cab9d8e1 (diff)
downloadFreeBSD-src-3aa8204279022673e2958fd270d39bc8ab0c277a.zip
FreeBSD-src-3aa8204279022673e2958fd270d39bc8ab0c277a.tar.gz
Deleted ddb_inb and ddb_outb functions that provide I/O access
routines as function for DDB. The inb and outb are provided as functions in machdep.c when DDB is defined.
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/pc98/pc98.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/pc98/pc98/pc98.c b/sys/pc98/pc98/pc98.c
index 00688b6..f990432 100644
--- a/sys/pc98/pc98/pc98.c
+++ b/sys/pc98/pc98/pc98.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: pc98.c,v 1.20 1997/03/25 10:04:50 kato Exp $
+ * $Id: pc98.c,v 1.21 1997/03/29 02:43:49 kato Exp $
*/
/*
@@ -107,11 +107,6 @@ u_int intr_mask[ICU_LEN];
u_int* intr_mptr[ICU_LEN];
int intr_unit[ICU_LEN];
-#ifdef DDB
-unsigned int ddb_inb __P((unsigned int addr));
-void ddb_outb __P((unsigned int addr, unsigned char dt));
-#endif
-
static inthand_t *fastintr[ICU_LEN] = {
&IDTVEC(fastintr0), &IDTVEC(fastintr1),
&IDTVEC(fastintr2), &IDTVEC(fastintr3),
@@ -1146,15 +1141,3 @@ unregister_intr(intr, handler)
write_eflags(ef);
return (0);
}
-
-#ifdef DDB
-unsigned int ddb_inb(unsigned int addr)
-{
- return inb(addr);
-}
-
-void ddb_outb(unsigned int addr, unsigned char dt)
-{
- outb(addr, dt);
-}
-#endif
OpenPOWER on IntegriCloud