Don't print newline here since it is supposed that more message is printed.
This commit is contained in:
parent
54c5777f78
commit
bdd9be2dc3
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: apm.c,v 1.50 2000/06/04 22:36:27 gmcgarry Exp $ */
|
/* $NetBSD: apm.c,v 1.51 2000/08/04 04:52:37 enami Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
|
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
|
||||||
|
@ -678,7 +678,7 @@ apm_powmgt_engage(onoff, dev)
|
||||||
regs.BX = dev;
|
regs.BX = dev;
|
||||||
regs.CX = onoff ? APM_MGT_ENGAGE : APM_MGT_DISENGAGE;
|
regs.CX = onoff ? APM_MGT_ENGAGE : APM_MGT_DISENGAGE;
|
||||||
if (apmcall(APM_PWR_MGT_ENGAGE, ®s) != 0)
|
if (apmcall(APM_PWR_MGT_ENGAGE, ®s) != 0)
|
||||||
apm_perror("power mgmt engage (device %x)\n", ®s, dev);
|
apm_perror("power mgmt engage (device %x)", ®s, dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
Loading…
Reference in New Issue