diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-11-02 03:52:53 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-11-02 03:52:53 +0100 |
commit | bb95002c2d47ab00764a183c200c7fd9ecb3c12a (patch) | |
tree | 6e1981519253d1d646e997438db136a59df43d93 /sys/src/9/pc/fns.h | |
parent | 670493fe5ee39e4c819864006e3a5392c0f96248 (diff) |
pc, pc64: implement acpi reset (for efi)
x230 booted in efi only (no csp) mode hangs
when traditional i8042reset() keyboard reset
is tried.
so we try acpireset() first which discoveres
and writes the acpi reset register.
Diffstat (limited to 'sys/src/9/pc/fns.h')
-rw-r--r-- | sys/src/9/pc/fns.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/src/9/pc/fns.h b/sys/src/9/pc/fns.h index 8ecaa0f7d..93178a000 100644 --- a/sys/src/9/pc/fns.h +++ b/sys/src/9/pc/fns.h @@ -1,6 +1,7 @@ #include "../port/portfns.h" void aamloop(int); +void acpireset(void); Dirtab* addarchfile(char*, int, long(*)(Chan*,void*,long,vlong), long(*)(Chan*,void*,long,vlong)); void archinit(void); int bios32call(BIOS32ci*, u16int[3]); |