aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/bios
diff options
context:
space:
mode:
authorNate Williams <nate@FreeBSD.org>1996-06-04 17:37:46 +0000
committerNate Williams <nate@FreeBSD.org>1996-06-04 17:37:46 +0000
commitf4210182417484f561dff8f2ee6156d06dc4815e (patch)
tree9b0fbe39eaf38af1df45d4958addbf4b06753da2 /sys/i386/bios
parentccbcef60f5398d103aa40055a030cf684bdb85d6 (diff)
downloadsrc-f4210182417484f561dff8f2ee6156d06dc4815e.tar.gz
src-f4210182417484f561dff8f2ee6156d06dc4815e.zip
Fix typo. in the APM_DSVALUE_BUG code that I missed.
Obtained from: Someone on the mailing list (sorry, I forgot who)
Notes
Notes: svn path=/head/; revision=16107
Diffstat (limited to 'sys/i386/bios')
-rw-r--r--sys/i386/bios/apm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c
index 870006075fc5..824348374a09 100644
--- a/sys/i386/bios/apm.c
+++ b/sys/i386/bios/apm.c
@@ -14,7 +14,7 @@
*
* Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
*
- * $Id: apm.c,v 1.40 1996/04/23 16:02:45 nate Exp $
+ * $Id: apm.c,v 1.41 1996/04/23 19:59:14 nate Exp $
*/
#include "apm.h"
@@ -691,7 +691,7 @@ apmattach(struct isa_device *dvp)
#ifdef APM_DSVALUE_BUG
caddr_t apm_bios_work;
- apm_bioswork = (caddr_t)malloc(apm_ds_limit, M_DEVBUG, M_NOWAIT);
+ apm_bios_work = (caddr_t)malloc(apm_ds_limit, M_DEVBUG, M_NOWAIT);
bcopy((caddr_t)((apm_ds_base << 4) + APM_KERNBASE), apm_bios_work,
apm_ds_limit);
#endif /* APM_DSVALUE_BUG */