summaryrefslogtreecommitdiff
path: root/src/cpu/p6/boot_cpu.c
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2004-10-14 19:39:27 +0000
committerEric Biederman <ebiederm@xmission.com>2004-10-14 19:39:27 +0000
commitb84166e8e53476f1ef4d49aca17f99d303b4aa67 (patch)
tree724c55edfa55813742745553995f70fa43c851bb /src/cpu/p6/boot_cpu.c
parentfcd5ace00b333ce31b11b02a2243dfbf39307f10 (diff)
- remove deprecated directories
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1658 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/p6/boot_cpu.c')
-rw-r--r--src/cpu/p6/boot_cpu.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cpu/p6/boot_cpu.c b/src/cpu/p6/boot_cpu.c
deleted file mode 100644
index 77b060b219..0000000000
--- a/src/cpu/p6/boot_cpu.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <cpu/p6/msr.h>
-
-int boot_cpu(void)
-{
- int bsp;
- msr_t msr;
- msr = rdmsr(0x1b);
- bsp = !!(msr.lo & (1 << 8));
- return bsp;
-}