diff options
author | msmith <msmith@FreeBSD.org> | 1999-07-30 08:24:23 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1999-07-30 08:24:23 +0000 |
commit | 3c387886064bc9a59a81eb6e634cf28b91f848bb (patch) | |
tree | 5cbbd23165a7792aee49fb21c562c37ceb06ee32 /sys/i386/bios | |
parent | f42b7dcfc4bcca0fe16bfc73811daa21faa79dad (diff) | |
download | FreeBSD-src-3c387886064bc9a59a81eb6e634cf28b91f848bb.zip FreeBSD-src-3c387886064bc9a59a81eb6e634cf28b91f848bb.tar.gz |
Remove all vestiges of APMIO_BIOS
Submitted by: N. Dudorov <nnd@mail.nsk.ru>
Diffstat (limited to 'sys/i386/bios')
-rw-r--r-- | sys/i386/bios/apm.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c index 02d4bfd..464739a 100644 --- a/sys/i386/bios/apm.c +++ b/sys/i386/bios/apm.c @@ -15,7 +15,7 @@ * * Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * - * $Id: apm.c,v 1.94 1999/07/29 01:49:12 msmith Exp $ + * $Id: apm.c,v 1.95 1999/07/29 18:15:33 iwasaki Exp $ */ #include "opt_devfs.h" @@ -1130,12 +1130,6 @@ apmioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p) if (apm_display(newstate)) error = ENXIO; break; -#if 0 - case APMIO_BIOS: - if (apm_bios_call((struct apm_bios_arg*)addr) == 0) - ((struct apm_bios_arg*)addr)->eax &= 0xff; - break; -#endif default: error = EINVAL; break; |