Fix crash when halting where APM was configured but not enabled

by checking whether APM is active in apm_power_off() and returning
if not.  (The code was already written with the expectation that
this function would return if it fails.)
This commit is contained in:
Garrett Wollman 1997-06-19 00:25:03 +00:00
parent 00f2dc9363
commit a8da31fc3e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=26729
2 changed files with 6 additions and 2 deletions

View File

@ -15,7 +15,7 @@
*
* Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
*
* $Id: apm.c,v 1.57 1997/06/15 02:02:41 wollman Exp $
* $Id: apm.c,v 1.58 1997/06/15 02:19:40 wollman Exp $
*/
#include <sys/param.h>
@ -231,6 +231,8 @@ apm_power_off(void)
{
u_long eax, ebx, ecx;
if (!apm_softc.active)
return;
eax = (APM_BIOS << 8) | APM_SETPWSTATE;
ebx = PMDV_ALLDEV;
ecx = PMST_OFF;

View File

@ -15,7 +15,7 @@
*
* Sep, 1994 Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD)
*
* $Id: apm.c,v 1.57 1997/06/15 02:02:41 wollman Exp $
* $Id: apm.c,v 1.58 1997/06/15 02:19:40 wollman Exp $
*/
#include <sys/param.h>
@ -231,6 +231,8 @@ apm_power_off(void)
{
u_long eax, ebx, ecx;
if (!apm_softc.active)
return;
eax = (APM_BIOS << 8) | APM_SETPWSTATE;
ebx = PMDV_ALLDEV;
ecx = PMST_OFF;