summaryrefslogtreecommitdiff
path: root/cpuid.c
diff options
context:
space:
mode:
authordavej <davej>2001-11-19 12:31:27 +0000
committerdavej <davej>2001-11-19 12:31:27 +0000
commit52f698b319c3547300427680a5f035cd38edeb67 (patch)
tree357d535923ca7af3855cd24ba1105ed962ca3fdb /cpuid.c
parent4d69e7c20a47148182f14217ec84698eb2582867 (diff)
Fix a comment.
Diffstat (limited to 'cpuid.c')
-rw-r--r--cpuid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpuid.c b/cpuid.c
index 5855fa3..51f89a2 100644
--- a/cpuid.c
+++ b/cpuid.c
@@ -1,5 +1,5 @@
/*
- * $Id: cpuid.c,v 1.8 2001/09/01 16:32:30 davej Exp $
+ * $Id: cpuid.c,v 1.9 2001/11/19 12:31:27 davej Exp $
* This file is part of x86info
* (C) 2000, 2001 Dave Jones.
* Fixes by Arjan van de Ven (arjanv@redhat.com) and
@@ -34,7 +34,7 @@ void cpuid (int CPU_number, int index,
return;
}
- /* Ok, this is SMP, so we need to use the /dev/CPU interface. */
+ /* Ok, use the /dev/CPU interface in preference to the _up code. */
snprintf (cpuname,18, "/dev/cpu/%d/cpuid", CPU_number);
fh = open (cpuname, O_RDONLY);
if (fh != -1) {