diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-19 22:26:27 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-06-19 22:26:27 +0200 |
commit | 5bb8203bf6cf2db988fc61ffaf8bf39aa30fabfe (patch) | |
tree | 3174386f75f920c34c4a48707b428295be5000c3 /sys/src/9/pc/archmp.c | |
parent | 40bc0b9de717c9f7cfadcca1d6d21bb115b3e8bb (diff) |
acpi: use Tblsz enum instead of sizeof(Tbl) due to alignment, enable use tsc on terminal kernel (thank erik)
Diffstat (limited to 'sys/src/9/pc/archmp.c')
-rw-r--r-- | sys/src/9/pc/archmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/archmp.c b/sys/src/9/pc/archmp.c index bbde765a0..23cf4fa66 100644 --- a/sys/src/9/pc/archmp.c +++ b/sys/src/9/pc/archmp.c @@ -395,7 +395,7 @@ identify(void) return 1; } - if(cpuserver && m->havetsc) + if(m->havetsc) archmp.fastclock = tscticks; return 0; |