summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64
diff options
context:
space:
mode:
authorEdd Barrett <edd@cvs.openbsd.org>2010-05-20 22:13:46 +0000
committerEdd Barrett <edd@cvs.openbsd.org>2010-05-20 22:13:46 +0000
commit5c1f1625cae88dfc5fc68cbbb36e3977d581c0b6 (patch)
tree1b2f6c766387a66e48397fa71961a6364f8e35f1 /sys/arch/sparc64
parent2766f67a91e12c9f57d0bc2fdb3765798e6e2080 (diff)
Make fans run slower in Sun systems with tda controllers by bumping the
minimum and maximum system temperatures by 5 degrees. System runs considerably quieter and people in the office have stopped complaining about the noise now. OK kettenis@
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r--sys/arch/sparc64/dev/tda.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/tda.c b/sys/arch/sparc64/dev/tda.c
index f856b971f85..49363a98c2f 100644
--- a/sys/arch/sparc64/dev/tda.c
+++ b/sys/arch/sparc64/dev/tda.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tda.c,v 1.5 2010/04/20 20:49:34 deraadt Exp $ */
+/* $OpenBSD: tda.c,v 1.6 2010/05/20 22:13:45 edd Exp $ */
/*
* Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
@@ -45,8 +45,8 @@
#define CPU_TEMP_MAX (67 * 1000000 + 273150000)
#define CPU_TEMP_MIN (57 * 1000000 + 273150000)
-#define SYS_TEMP_MAX (30 * 1000000 + 273150000)
-#define SYS_TEMP_MIN (20 * 1000000 + 273150000)
+#define SYS_TEMP_MAX (35 * 1000000 + 273150000)
+#define SYS_TEMP_MIN (25 * 1000000 + 273150000)
struct tda_softc {
struct device sc_dev;