projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1514ab0
)
[x86 setup] APM: BX should be zero when disconnecting
author
H. Peter Anvin
<hpa@zytor.com>
Mon, 23 Jul 2007 22:37:14 +0000
(15:37 -0700)
committer
H. Peter Anvin
<hpa@zytor.com>
Wed, 25 Jul 2007 19:02:21 +0000
(12:02 -0700)
For APM calls, BX contains the device index, which is zero for
the system BIOS. Disconnect requres BX = 0.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
arch/i386/boot/apm.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/i386/boot/apm.c
b/arch/i386/boot/apm.c
index 8be3f5686af6cbbd45260748fc32ee63966c9595..eab50c55a3a565f626443fffe015fa5ad9c38b04 100644
(file)
--- a/
arch/i386/boot/apm.c
+++ b/
arch/i386/boot/apm.c
@@
-45,9
+45,10
@@
int query_apm_bios(void)
/* Disconnect first, just in case */
ax = 0x5304;
+ bx = 0;
asm volatile("pushl %%ebp ; int $0x15 ; popl %%ebp"
- : "+a" (ax)
- : : "e
bx", "e
cx", "edx", "esi", "edi");
+ : "+a" (ax)
, "+b" (bx)
+ : : "ecx", "edx", "esi", "edi");
/* Paranoia */
ebx = esi = 0;