summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2006-03-16 02:55:52 +0000
committerdlg <dlg@openbsd.org>2006-03-16 02:55:52 +0000
commit4499fd8bc2aa1659f8c818e8b0f69610df9223af (patch)
tree985ca77822cf8e3caff62786be5cfc9e3338f689
parentif the link is down with a card using a fibre interface then show a (diff)
downloadwireguard-openbsd-4499fd8bc2aa1659f8c818e8b0f69610df9223af.tar.xz
wireguard-openbsd-4499fd8bc2aa1659f8c818e8b0f69610df9223af.zip
remove useless powernow cruft from dmesg. we're interested in the
available speed states (which is output separately), not if the cpu can support them even if the speedstates are not provided. from gwk, ok deraadt@
-rw-r--r--sys/arch/amd64/amd64/identcpu.c20
-rw-r--r--sys/arch/i386/i386/machdep.c24
2 files changed, 2 insertions, 42 deletions
diff --git a/sys/arch/amd64/amd64/identcpu.c b/sys/arch/amd64/amd64/identcpu.c
index d0e1381527f..307a4c66849 100644
--- a/sys/arch/amd64/amd64/identcpu.c
+++ b/sys/arch/amd64/amd64/identcpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: identcpu.c,v 1.8 2006/03/08 03:33:21 uwe Exp $ */
+/* $OpenBSD: identcpu.c,v 1.9 2006/03/16 02:55:52 dlg Exp $ */
/* $NetBSD: identcpu.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $ */
/*
@@ -94,18 +94,6 @@ const struct {
{ CPUIDECX_SSE3, "SSE3" }
};
-const struct {
- u_int32_t mask;
- const char * name;
-} amd_pn_flags[] = {
- { 0x01, "TS"},
- { 0x02, "FID"},
- { 0x04, "VID"},
- { 0x08, "TTP"},
- { 0x10, "TM"},
- { 0x20, "STC"}
-};
-
int
cpu_amd64speed(int *freq)
{
@@ -185,12 +173,6 @@ identifycpu(struct cpu_info *ci)
#ifndef MULTIPROCESSOR
if (pnfeatset > 0x80000007) {
CPUID(0x80000007, dummy, dummy, dummy, pnfeatset);
- printf("%s: AMD Powernow:", ci->ci_dev->dv_xname);
- for (i = 0; i < 6; i++) {
- if (pnfeatset & amd_pn_flags[i].mask)
- printf(" %s", amd_pn_flags[i].name);
- }
- printf("\n");
if (pnfeatset & 0x06) {
if ((ci->ci_signature & 0xF00) == 0xf00)
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index c874ef52348..d1ec7014405 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.346 2006/03/15 21:03:38 deraadt Exp $ */
+/* $OpenBSD: machdep.c,v 1.347 2006/03/16 02:55:52 dlg Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -1403,11 +1403,6 @@ amd_family5_setup(struct cpu_info *ci)
}
}
-struct amd_pn_flag {
- int mask;
- const char *name;
-};
-
void
amd_family6_setup(struct cpu_info *ci)
{
@@ -1416,16 +1411,7 @@ amd_family6_setup(struct cpu_info *ci)
extern void sse2_pagezero(void *, size_t);
extern void i686_pagezero(void *, size_t);
#if !defined(MULTIPROCESSOR)
- static struct amd_pn_flag amd_pn_flags[] = {
- {0x01, "TS"},
- {0x02, "FID"},
- {0x04, "VID"},
- {0x08, "TTP"},
- {0x10, "TM"},
- {0x20, "STC"}
- };
u_int regs[4];
- int i;
#endif
if (cpu_feature & CPUID_SSE2)
@@ -1436,14 +1422,7 @@ amd_family6_setup(struct cpu_info *ci)
cpuid(0x80000000, regs);
if (regs[0] > 0x80000007) {
cpuid(0x80000007, regs);
- printf("%s: AMD Powernow:", ci->ci_dev.dv_xname);
- for (i = 0; i < 6; i++) {
- if (regs[3] & amd_pn_flags[i].mask)
- printf(" %s", amd_pn_flags[i].name);
- }
- printf("\n");
-#if !defined(MULTIPROCESSOR)
if (regs[3] & 0x06) {
switch(ci->ci_signature & 0xF00) {
case 0x600:
@@ -1454,7 +1433,6 @@ amd_family6_setup(struct cpu_info *ci)
break;
}
}
-#endif
}
#endif
#endif